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:
authorchcosta <chcosta@microsoft.com>2016-10-12 21:48:26 +0300
committerGitHub <noreply@github.com>2016-10-12 21:48:26 +0300
commit17b9a394ff2b31cd249e37b6ed691696a24856f2 (patch)
tree0f436e995453ebf099a43eea5b84c5e3282dc1ad /Packaging.props
parent73918bdca167dff1756b177ab42933c852b380b1 (diff)
Add version file to packages (#12548)
* Add version file to packages * Remove SyncInfoFile entry, add comment, fix spacing -- PR feedback * Fix spacing * fix typo
Diffstat (limited to 'Packaging.props')
-rw-r--r--Packaging.props8
1 files changed, 7 insertions, 1 deletions
diff --git a/Packaging.props b/Packaging.props
index 4390ad4d76..2f7afa0698 100644
--- a/Packaging.props
+++ b/Packaging.props
@@ -35,8 +35,8 @@
<SkipBuildPackages>true</SkipBuildPackages>
</PropertyGroup>
- <!-- Add required legal files to packages -->
<ItemGroup Condition="'$(MSBuildProjectExtension)' == '.pkgproj'">
+ <!-- Add required legal files to packages -->
<File Condition="Exists('$(PackageLicenseFile)')"
Include="$(PackageLicenseFile)" >
<SkipPackageFileCheck>true</SkipPackageFileCheck>
@@ -45,5 +45,11 @@
Include="$(PackageThirdPartyNoticesFile)" >
<SkipPackageFileCheck>true</SkipPackageFileCheck>
</File>
+
+ <!-- Add version file to packages -->
+ <File Condition="Exists('$(SyncInfoFile)')"
+ Include="$(SyncInfoFile)" >
+ <SkipPackageFileCheck>true</SkipPackageFileCheck>
+ </File>
</ItemGroup>
</Project>