summaryrefslogtreecommitdiff
path: root/clr.coreclr.props
diff options
context:
space:
mode:
authorMike McLaughlin <mikem@microsoft.com>2016-09-22 13:51:13 -0700
committerGitHub <noreply@github.com>2016-09-22 13:51:13 -0700
commit5df288ed77b004708babe296d96412e3bdb13bed (patch)
treecf35dc28fcf228d4d17dbc729969319732151fba /clr.coreclr.props
parent4dd3965514c9b4316230cbd329fc0b0f84be2a92 (diff)
downloadcoreclr-5df288ed77b004708babe296d96412e3bdb13bed.tar.gz
coreclr-5df288ed77b004708babe296d96412e3bdb13bed.tar.bz2
coreclr-5df288ed77b004708babe296d96412e3bdb13bed.zip
Fix Unable to step through Visual Studio remote debugger with coreclr executables on Nano Server (#7317)
Needed to add back a dummy version of ICorDebugLegacyNetCFHostCallbackInvoker_PrivateWindowsPhoneOnly interface so VS doesn't get the QI failure and stop working by not calling the "Continue" method. Issue #7316
Diffstat (limited to 'clr.coreclr.props')
-rw-r--r--clr.coreclr.props1
1 files changed, 1 insertions, 0 deletions
diff --git a/clr.coreclr.props b/clr.coreclr.props
index f6ac42f25f..50b3b4fb30 100644
--- a/clr.coreclr.props
+++ b/clr.coreclr.props
@@ -59,6 +59,7 @@
<FeatureCominteropWinRTManagedActivation>true</FeatureCominteropWinRTManagedActivation>
<FeatureHostAssemblyResolver>true</FeatureHostAssemblyResolver>
<FeatureLazyCOWPages Condition="('$(TargetArch)' == 'i386') or ('$(TargetArch)' == 'arm')">true</FeatureLazyCOWPages>
+ <FeatureLegacyNetCFDbgHostControl>true</FeatureLegacyNetCFDbgHostControl>
<FeatureRandomizedStringHashing>true</FeatureRandomizedStringHashing>
<!-- The rejit feature is available only on supported architectures (x86 & x64) -->
<FeatureReJIT Condition="('$(TargetArch)' == 'i386') or ('$(TargetArch)' == 'amd64')">true</FeatureReJIT>