From 74533fd9c85d106a26b477db3d357a90bdb365c4 Mon Sep 17 00:00:00 2001 From: Erik Ejlskov Jensen Date: Thu, 11 Jan 2024 13:48:30 +0100 Subject: [PATCH] fix replace --- .github/workflows/vsix.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/vsix.yml b/.github/workflows/vsix.yml index fe6bdb540..ef0e4d040 100644 --- a/.github/workflows/vsix.yml +++ b/.github/workflows/vsix.yml @@ -27,7 +27,7 @@ jobs: - name: Update Version run: | ((Get-Content -Path GUI/EFCorePowerTools/Properties/AssemblyInfo.cs -Raw) -Replace "2.6.0.1", "${{ env.VERSION }}") | Set-Content -Path GUI/EFCorePowerTools/Properties/AssemblyInfo.cs - ((Get-Content -Path GUI/PowerToolsExtensionPack/source.extension.vsixmanifest -Raw) -Replace "2.6.0", "${{ env.VERSION }}") | Set-Content -Path GUI/PowerToolsExtensionPack/source.extension.vsixmanifest + ((Get-Content -Path GUI/EFCorePowerTools/source.extension.vsixmanifest -Raw) -Replace "2.6.0", "${{ env.VERSION }}") | Set-Content -Path GUI/EFCorePowerTools/source.extension.vsixmanifest ((Get-Content -Path GUI/PowerToolsExtensionPack/source.extension.vsixmanifest -Raw) -Replace "2.6.0", "${{ env.VERSION }}") | Set-Content -Path GUI/PowerToolsExtensionPack/source.extension.vsixmanifest working-directory: src shell: pwsh