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:
authorWes Haggard <Wes.Haggard@microsoft.com>2017-03-22 02:46:20 +0300
committerWes Haggard <Wes.Haggard@microsoft.com>2017-03-22 02:53:01 +0300
commitb744755a83e57e8b4dea7df11bf03489724d2c6c (patch)
treea69d8d6f540f0e8624d7e11b5579a210c5c68913 /src/shims/shims.proj
parent0260c6d2b46b7cb0b01d736ddb414c7a9eec4a86 (diff)
Force shim assembly references to 0.0.0.0
The shims will end up being pulled into assembly closures where sometimes they will have a higher version of a dependency then what is actually needed. This causes msbuild (RAR) to output warnings which are just noise. For shims we really don't need the refenced to match exact versions so we can always force them to be the lowest version 0.0.0.0 and they will unify up to what is on the platform.
Diffstat (limited to 'src/shims/shims.proj')
-rw-r--r--src/shims/shims.proj1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shims/shims.proj b/src/shims/shims.proj
index a46fc3c369..c915406dc9 100644
--- a/src/shims/shims.proj
+++ b/src/shims/shims.proj
@@ -28,6 +28,7 @@
<GenFacadesArgs>$(GenFacadesArgs) -facadePath:"$(GenFacadesOutputPath)"</GenFacadesArgs>
<GenFacadesArgs>$(GenFacadesArgs) -producePdb:false</GenFacadesArgs>
<GenFacadesArgs>$(GenFacadesArgs) -assemblyFileVersion:$(AssemblyFileVersion)</GenFacadesArgs>
+ <GenFacadesArgs>$(GenFacadesArgs) -forceZeroVersionSeeds</GenFacadesArgs>
<!-- TODO: We should remove this flag once we have all the types for netstandard -->
<GenFacadesArgs>$(GenFacadesArgs) -ignoreMissingTypes</GenFacadesArgs>
</PropertyGroup>