Skip to content

Commit

Permalink
Separate and sort NuspecProperties in Directory.Build.targets
Browse files Browse the repository at this point in the history
  • Loading branch information
bradwilson committed Nov 8, 2023
1 parent b82ed58 commit 4ea59ac
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Directory.Build.targets
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@
<!-- Never put the Git hash in the package version -->
<PackageVersion>$(BuildVersion3Components)$(PrereleaseVersion)</PackageVersion>
<!-- Pass through values we don't know ahead of time for any hand-crafted .nuspec files -->
<NuspecProperties>PackageVersion=$(PackageVersion);GitCommitId=$(GitCommitId);Configuration=$(Configuration)</NuspecProperties>
<NuspecProperties>
Configuration=$(Configuration);
GitCommitId=$(GitCommitId);
PackageVersion=$(PackageVersion);
</NuspecProperties>
</PropertyGroup>
</Target>

Expand Down

0 comments on commit 4ea59ac

Please sign in to comment.