diff options
author | John Chen <jochen@microsoft.com> | 2016-11-01 22:50:56 -0700 |
---|---|---|
committer | John Chen <jochen@microsoft.com> | 2016-11-01 22:50:56 -0700 |
commit | 19e352fdd52eec39fe7e04798fa3bbadf2f6aa88 (patch) | |
tree | 6f6f3d96956e3ec91ea6e008d54a3967fed20805 /src/debug | |
parent | 45ab32327d565a36fe0ed03bc85ffdd5220a3cf2 (diff) | |
download | coreclr-19e352fdd52eec39fe7e04798fa3bbadf2f6aa88.tar.gz coreclr-19e352fdd52eec39fe7e04798fa3bbadf2f6aa88.tar.bz2 coreclr-19e352fdd52eec39fe7e04798fa3bbadf2f6aa88.zip |
Fix build break 814276: FEATURE_SPAN_OF_T disabled in runtime but enabled in DAC
[tfs-changeset: 1636322]
Diffstat (limited to 'src/debug')
-rw-r--r-- | src/debug/daccess/daccess.targets | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/debug/daccess/daccess.targets b/src/debug/daccess/daccess.targets index a7d9e41554..43da554f47 100644 --- a/src/debug/daccess/daccess.targets +++ b/src/debug/daccess/daccess.targets @@ -4,6 +4,12 @@ <!--from the original SOURCES/DIRS file by the KBC tool.--> <!--*****************************************************--> <!--Import the settings--> + <PropertyGroup> + <!-- Work around problems with loading System.Private.CoreLib.dll, --> + <!-- caused by inconsistent setting of UseLegacyCompiler and FeatureSpanOfT --> + <!-- between System.Private.CoreLib.dll and the runtime. --> + <UseLegacyCompiler>true</UseLegacyCompiler> + </PropertyGroup> <Import Project="$(_NTDRIVE)$(_NTROOT)\ndp\clr\clr.props" /> <Import Project="$(_NTDRIVE)$(_NTROOT)\ndp\clr\dac.props" /> <Import Project="..\SetDebugTargetLocal.props" /> |