[Python-checkins] Enables RC markings in nuget packages. (#3216)
Steve Dower
webhook-mailer at python.org
Sat Aug 26 21:00:51 EDT 2017
https://github.com/python/cpython/commit/0b69b3723d018b197b94b173c3305bdef4c6b11b
commit: 0b69b3723d018b197b94b173c3305bdef4c6b11b
branch: 2.7
author: Steve Dower <steve.dower at microsoft.com>
committer: GitHub <noreply at github.com>
date: 2017年08月26日T18:00:48-07:00
summary:
Enables RC markings in nuget packages. (#3216)
files:
M Tools/nuget/make_pkg.proj
diff --git a/Tools/nuget/make_pkg.proj b/Tools/nuget/make_pkg.proj
index cb124abb5e8..0f3f8bd000a 100644
--- a/Tools/nuget/make_pkg.proj
+++ b/Tools/nuget/make_pkg.proj
@@ -14,6 +14,7 @@
<PropertyGroup>
<NuspecVersion>$(MajorVersionNumber).$(MinorVersionNumber).$(MicroVersionNumber)</NuspecVersion>
+ <NuspecVersion Condition="$(ReleaseLevelName) != ''">$(NuspecVersion)-$(ReleaseLevelName)</NuspecVersion>
<SignOutput>false</SignOutput>
<TargetName>$(OutputName).$(NuspecVersion)</TargetName>
<TargetExt>.nupkg</TargetExt>
More information about the Python-checkins
mailing list