Skip to content

Commit b9f56c1

Browse files
committed
Change package version
1 parent 720ad21 commit b9f56c1

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ jobs:
266266
if: ${{ matrix.os == 'ubuntu-latest' }}
267267
run: |
268268
mkdir $PACKAGEDIR
269-
dotnet pack --no-build -c ${{ env.BUILD_CONFIG }} -o $PACKAGEDIR -p:PackageVersion=${{ steps.gitversion.outputs.nuGetVersionV2 }}
269+
dotnet pack --no-build -c ${{ env.BUILD_CONFIG }} -o $PACKAGEDIR -p:PackageVersion=${{ steps.gitversion.outputs.majorMinorPatch }}-${{steps.gitversion.outputs.Sha }}
270270
ls -lR $PACKAGEDIR
271271
working-directory: ./src
272272

src/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@
2424

2525
using System.Reflection;
2626

27-
[assembly: AssemblyFileVersion("0.1.0.0")]
28-
[assembly: AssemblyVersion("0.1.0.0")]
29-
[assembly: AssemblyInformationalVersion("0.1.0")]
27+
[assembly: AssemblyFileVersion("0.0.0.0")]
28+
[assembly: AssemblyVersion("0.0.0.0")]
29+
[assembly: AssemblyInformationalVersion("0.0.0")]

src/Authentication/Monai.Deploy.Security.Authentication.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
<CodeAnalysisRuleSet>..\.sonarlint\project-monai_monai-deploy-securitycsharp.ruleset</CodeAnalysisRuleSet>
2525
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
2626
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
27+
<IsPackable>true</IsPackable>
2728
</PropertyGroup>
2829
<ItemGroup>
2930
<None Include="..\..\LICENSE" Link="LICENSE" PackagePath="" Pack="true" />

0 commit comments

Comments
 (0)