diff options
author | Mike McLaughlin <mikem@microsoft.com> | 2016-09-22 13:51:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-22 13:51:13 -0700 |
commit | 5df288ed77b004708babe296d96412e3bdb13bed (patch) | |
tree | cf35dc28fcf228d4d17dbc729969319732151fba /clr.defines.targets | |
parent | 4dd3965514c9b4316230cbd329fc0b0f84be2a92 (diff) | |
download | coreclr-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.defines.targets')
-rw-r--r-- | clr.defines.targets | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clr.defines.targets b/clr.defines.targets index fd2b5e41c2..9667a773f5 100644 --- a/clr.defines.targets +++ b/clr.defines.targets @@ -54,6 +54,7 @@ <CDefines Condition="'$(FeatureIsymReader)' == 'true'">$(CDefines);FEATURE_ISYM_READER</CDefines> <CDefines Condition="'$(FeatureLazyCOWPages)' == 'true'">$(CDefines);FEATURE_LAZY_COW_PAGES</CDefines> <CDefines Condition="'$(FeatureLeakCultureInfo)' == 'true'">$(CDefines);FEATURE_LEAK_CULTURE_INFO</CDefines> + <CDefines Condition="'$(FeatureLegacyNetCFDbgHostControl)' == 'true'">$(CDefines);FEATURE_LEGACYNETCF_DBG_HOST_CONTROL</CDefines> <CDefines Condition="'$(FeatureLegacySurface)' == 'true'">$(CDefines);FEATURE_LEGACYSURFACE</CDefines> <CDefines Condition="'$(FeatureLoaderOptimization)' == 'true'">$(CDefines);FEATURE_LOADER_OPTIMIZATION</CDefines> <CDefines Condition="'$(FeatureMacl)' == 'true'">$(CDefines);FEATURE_MACL</CDefines> |