Skip to content

Commit

Permalink
Avoid overriding NuGetPackageVersion from environment variable
Browse files Browse the repository at this point in the history
  • Loading branch information
gobradovic committed Sep 26, 2024
1 parent 2ea6f06 commit e1f7865
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion properties/service_fabric_nuget.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<!-- Set Versions. These are used for generating Nuget packages. -->
<PropertyGroup>
<NuGetPackageVersion>$(MajorVersion).$(MinorVersion).$(BuildVersion)$(PreviewTag)</NuGetPackageVersion>
<NuGetPackageVersion Condition="'$(NuGetPackageVersion)' == ''">$(MajorVersion).$(MinorVersion).$(BuildVersion)$(PreviewTag)</NuGetPackageVersion>
</PropertyGroup>

<PropertyGroup>
Expand Down

0 comments on commit e1f7865

Please sign in to comment.