diff options
author | Jose Perez Rodriguez <joperezr@microsoft.com> | 2016-06-03 09:09:15 -0700 |
---|---|---|
committer | Jose Perez Rodriguez <joperezr@microsoft.com> | 2016-06-03 09:09:15 -0700 |
commit | 9e08919cc925572f30dfc2e33a4e4c80252748b2 (patch) | |
tree | d806d1d8bd47b92e2351de27d25142c25e9b5053 | |
parent | eff95d6573e851363480919b23dc3850aaca27e5 (diff) | |
parent | 55cc2155b465c73552153b1528d89f684b35a0ae (diff) | |
download | coreclr-9e08919cc925572f30dfc2e33a4e4c80252748b2.tar.gz coreclr-9e08919cc925572f30dfc2e33a4e4c80252748b2.tar.bz2 coreclr-9e08919cc925572f30dfc2e33a4e4c80252748b2.zip |
Merge pull request #5436 from joperezr/DisableNativeResourceCompileForManagedCode
Disabling NativeResourceCompile Target for Managed libraries
-rw-r--r-- | src/mscorlib/System.Private.CoreLib.csproj | 1 | ||||
-rw-r--r-- | src/mscorlib/mscorlib.csproj | 1 | ||||
-rw-r--r-- | src/mscorlib/ref/mscorlib.csproj | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/src/mscorlib/System.Private.CoreLib.csproj b/src/mscorlib/System.Private.CoreLib.csproj index 4529f45657..468b69406c 100644 --- a/src/mscorlib/System.Private.CoreLib.csproj +++ b/src/mscorlib/System.Private.CoreLib.csproj @@ -30,7 +30,6 @@ <HighEntropyVA>true</HighEntropyVA> <ErrorReport>prompt</ErrorReport> <Optimize Condition="'$(Optimize)' == ''">true</Optimize> - <GenerateNativeVersionInfo Condition="'$(OsEnvironment)'=='Windows_NT'">true</GenerateNativeVersionInfo> <CLSCompliant>true</CLSCompliant> <WarningLevel>4</WarningLevel> <TreatWarningsAsErrors>false</TreatWarningsAsErrors> diff --git a/src/mscorlib/mscorlib.csproj b/src/mscorlib/mscorlib.csproj index eca1790ea5..ec96bf1db3 100644 --- a/src/mscorlib/mscorlib.csproj +++ b/src/mscorlib/mscorlib.csproj @@ -30,7 +30,6 @@ <HighEntropyVA>true</HighEntropyVA> <ErrorReport>prompt</ErrorReport> <Optimize Condition="'$(Optimize)' == ''">true</Optimize> - <GenerateNativeVersionInfo Condition="'$(OsEnvironment)'=='Windows_NT'">true</GenerateNativeVersionInfo> <CLSCompliant>true</CLSCompliant> <WarningLevel>4</WarningLevel> <TreatWarningsAsErrors>false</TreatWarningsAsErrors> diff --git a/src/mscorlib/ref/mscorlib.csproj b/src/mscorlib/ref/mscorlib.csproj index 9827fe7ca2..9830f09405 100644 --- a/src/mscorlib/ref/mscorlib.csproj +++ b/src/mscorlib/ref/mscorlib.csproj @@ -23,7 +23,6 @@ <ErrorReport>prompt</ErrorReport> <Optimize Condition="'$(Optimize)' == ''">true</Optimize> - <GenerateNativeVersionInfo Condition="'$(OsEnvironment)'=='Windows_NT'">true</GenerateNativeVersionInfo> <CLSCompliant>true</CLSCompliant> <WarningLevel>4</WarningLevel> <TreatWarningsAsErrors>false</TreatWarningsAsErrors> |