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:
authorEric St. John <ericstj@microsoft.com>2016-08-18 23:30:55 +0300
committerEric St. John <ericstj@microsoft.com>2016-08-24 16:47:56 +0300
commit589f5a13b6844a44b369cc468d05885ab9546d82 (patch)
tree3d28b98736a7fe34c9933660fddd68f02fbe1f5d /Packaging.props
parentc6fb536fba7fbcfd46f40eb469481214e392a6f1 (diff)
Central nupkg versioning & library assm versioning
This moves to a central versioning scheme for all packages that is tied to the product release. 1.1 will include packages all with a common version.
Diffstat (limited to 'Packaging.props')
-rw-r--r--Packaging.props7
1 files changed, 5 insertions, 2 deletions
diff --git a/Packaging.props b/Packaging.props
index cfd026cac5..65cf8aa75e 100644
--- a/Packaging.props
+++ b/Packaging.props
@@ -19,6 +19,9 @@
<!-- temporary change until buildtools can be updated https://github.com/dotnet/buildtools/issues/831 -->
<LineupPackageVersion Condition="'$(LineupPackageVersion)' == ''">1.0.3</LineupPackageVersion>
<PlatformPackageVersion Condition="'$(PlatformPackageVersion)' == ''">1.0.2</PlatformPackageVersion>
+
+ <!-- by default all packages will use the same version which revs with respect to product version -->
+ <Version Condition="'$(Version)' == ''">4.3.0</Version>
</PropertyGroup>
<Import Condition="Exists('pkg/baseline/baseline.props')" Project="pkg/baseline/baseline.props" />
@@ -35,11 +38,11 @@
<!-- Add required legal files to packages -->
<ItemGroup Condition="'$(MSBuildProjectExtension)' == '.pkgproj'">
<File Condition="Exists('$(PackageLicenseFile)')"
- Include="$(PackageLicenseFile)" >
+ Include="$(PackageLicenseFile)" >
<SkipPackageFileCheck>true</SkipPackageFileCheck>
</File>
<File Condition="Exists('$(PackageThirdPartyNoticesFile)')"
- Include="$(PackageThirdPartyNoticesFile)" >
+ Include="$(PackageThirdPartyNoticesFile)" >
<SkipPackageFileCheck>true</SkipPackageFileCheck>
</File>
</ItemGroup>