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.StackTraceGenerator
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.StackTraceGenerator')
-rw-r--r--src/System.Private.StackTraceGenerator/src/System.Private.StackTraceGenerator.csproj1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/System.Private.StackTraceGenerator/src/System.Private.StackTraceGenerator.csproj b/src/System.Private.StackTraceGenerator/src/System.Private.StackTraceGenerator.csproj
index d3cc9017b..0e824f048 100644
--- a/src/System.Private.StackTraceGenerator/src/System.Private.StackTraceGenerator.csproj
+++ b/src/System.Private.StackTraceGenerator/src/System.Private.StackTraceGenerator.csproj
@@ -3,6 +3,7 @@
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
<PropertyGroup>
<AssemblyName>System.Private.StackTraceGenerator</AssemblyName>
+ <AssemblyVersion>4.0.0.0</AssemblyVersion>
<OutputType>Library</OutputType>
<ProjectGuid>{35A616DA-EEC6-49C4-BD06-AD27938DC94B}</ProjectGuid>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>