We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ac222e commit 6fd1b07Copy full SHA for 6fd1b07
.github/workflows/release.yml
@@ -50,7 +50,7 @@ jobs:
50
run: |
51
cd publish/win-x64
52
# Remove .pdb files if any exist
53
- if ls *.pdb 1> /dev/null 2>&1; then rm *.pdb; fi
+ if (Test-Path "*.pdb") { Remove-Item "*.pdb" }
54
7z a ../../SemanticCode-${{ needs.prepare.outputs.version }}-win-x64.zip *
55
56
- name: Upload Windows artifact
Directory.Packages.props
@@ -1,7 +1,7 @@
1
<Project>
2
<PropertyGroup>
3
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
4
- <Version>0.1.1.1</Version>
+ <Version>0.1.1.2</Version>
5
<AssemblyVersion>$(Version)</AssemblyVersion>
6
<FileVersion>$(Version)</FileVersion>
7
<InformationalVersion>$(Version)</InformationalVersion>
0 commit comments