Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavis Goodin <dagood@microsoft.com>2016-07-20 02:52:24 +0300
committerDavis Goodin <dagood@microsoft.com>2016-07-20 02:52:24 +0300
commit6c37fc4a6b1134fb31d7aaef027a97e884565913 (patch)
tree3f4faaa3e5a72be14cd38414eba7e56cf1bfd2df /Packaging.props
parent3d5e79e8da3f9225223cd376399170acb31cd188 (diff)
Remove one char from PreReleaseLabel to keep the total length under 20 chars.
NuGet has a limit of 20 characters maximum for the "special version part". In local builds this limit wasn't met because the version is "XXXXX-X", but in the build pipeline it's "XXXXX-XX". The extra digit brought it to 21 characters.
Diffstat (limited to 'Packaging.props')
-rw-r--r--Packaging.props2
1 files changed, 1 insertions, 1 deletions
diff --git a/Packaging.props b/Packaging.props
index 2acaeb3bac..2d3aa19a33 100644
--- a/Packaging.props
+++ b/Packaging.props
@@ -1,6 +1,6 @@
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
- <PreReleaseLabel>beta-dev-api</PreReleaseLabel>
+ <PreReleaseLabel>beta-devapi</PreReleaseLabel>
<PackageDescriptionFile>$(ProjectDir)pkg/descriptions.json</PackageDescriptionFile>
<PackageLicenseFile>$(ProjectDir)pkg/dotnet_library_license.txt</PackageLicenseFile>
<PackageThirdPartyNoticesFile>$(ProjectDir)pkg/ThirdPartyNotices.txt</PackageThirdPartyNoticesFile>