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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWes Haggard <Wes.Haggard@microsoft.com>2016-01-04 11:58:07 +0300
committerWes Haggard <Wes.Haggard@microsoft.com>2016-01-04 11:58:07 +0300
commit6279b5ee24368bc0c70c5c9c0cb4a66a18e4759d (patch)
tree0cc06d7ecb78aae36bb6960412b9980ea6077e97 /src/System.Private.Reflection.Core
parentb5eabab8db4e44d3b1683ba33bb8cb16de7898ba (diff)
Need to explicitly set the AssemblyVersion otherwise it defaults to 999.999.999.999 which breaks some things like compat when there are direct references to these.
[tfs-changeset: 1560977]
Diffstat (limited to 'src/System.Private.Reflection.Core')
-rw-r--r--src/System.Private.Reflection.Core/src/System.Private.Reflection.Core.csproj1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/System.Private.Reflection.Core/src/System.Private.Reflection.Core.csproj b/src/System.Private.Reflection.Core/src/System.Private.Reflection.Core.csproj
index edd19fa16..e24d1e8a0 100644
--- a/src/System.Private.Reflection.Core/src/System.Private.Reflection.Core.csproj
+++ b/src/System.Private.Reflection.Core/src/System.Private.Reflection.Core.csproj
@@ -3,6 +3,7 @@
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
<PropertyGroup>
<AssemblyName>System.Private.Reflection.Core</AssemblyName>
+ <AssemblyVersion>4.0.0.0</AssemblyVersion>
<OutputType>Library</OutputType>
<ProjectGuid>{999BB20D-A032-4836-A587-627D243C1668}</ProjectGuid>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>