We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a247a0 commit 51d3fe6Copy full SHA for 51d3fe6
.github/workflows/CreateSignNuGet.yml
@@ -19,7 +19,7 @@ jobs:
19
20
- name: Create NuGet Package (Branch)
21
if: github.ref_type != 'tag'
22
- run: dotnet pack ./working --version-suffix "ci-${{ github.run_number }}" -c Release
+ run: dotnet pack ./working -p:PackageVersion="1.0.0-ci-${{ github.run_number }}" -c Release
23
24
- name: Create NuGet Package (Tag)
25
if: github.ref_type == 'tag'
working/templatepack.csproj
@@ -2,7 +2,7 @@
2
3
<PropertyGroup>
4
<PackageType>template</PackageType>
5
- <Version Condition="'$(Configuration)' == 'Debug'">1.0.0</Version>
+ <PackageVersion>1.0.18-alpha</PackageVersion>
6
<PackageId>Skyline.DataMiner.VisualStudioTemplates.Internal</PackageId>
7
<Title>DataMiner DotNet Templates</Title>
8
<Authors>SkylineCommunications</Authors>
0 commit comments