summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Toub <stoub@microsoft.com>2015-04-03 06:52:58 -0400
committerStephen Toub <stoub@microsoft.com>2015-04-03 06:52:58 -0400
commite2dab68cd90b8b79ab68ae31a0a6e641b7791329 (patch)
treeaee3d09e593fa946e8526acbf8ba66022b9385ad
parent940483658c1b25f7f56fb3529a138090342afac1 (diff)
parent1836713388f47867ae5db7aca4aac8507daa3767 (diff)
downloadcoreclr-e2dab68cd90b8b79ab68ae31a0a6e641b7791329.tar.gz
coreclr-e2dab68cd90b8b79ab68ae31a0a6e641b7791329.tar.bz2
coreclr-e2dab68cd90b8b79ab68ae31a0a6e641b7791329.zip
Merge pull request #622 from stephentoub/fix_quirks
Enable UseLatestBehaviorWhenTFMNotSpecified for Unix corerun
-rw-r--r--src/coreclr/hosts/unixcorerun/corerun.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/coreclr/hosts/unixcorerun/corerun.cpp b/src/coreclr/hosts/unixcorerun/corerun.cpp
index 61939ac579..28441a80e1 100644
--- a/src/coreclr/hosts/unixcorerun/corerun.cpp
+++ b/src/coreclr/hosts/unixcorerun/corerun.cpp
@@ -327,7 +327,8 @@ int ExecuteManagedAssembly(
"TRUSTED_PLATFORM_ASSEMBLIES",
"APP_PATHS",
"APP_NI_PATHS",
- "NATIVE_DLL_SEARCH_DIRECTORIES"
+ "NATIVE_DLL_SEARCH_DIRECTORIES",
+ "AppDomainCompatSwitch"
};
const char *propertyValues[] = {
// TRUSTED_PLATFORM_ASSEMBLIES
@@ -337,7 +338,9 @@ int ExecuteManagedAssembly(
// APP_NI_PATHS
appPath.c_str(),
// NATIVE_DLL_SEARCH_DIRECTORIES
- nativeDllSearchDirs.c_str()
+ nativeDllSearchDirs.c_str(),
+ // AppDomainCompatSwitch
+ "UseLatestBehaviorWhenTFMNotSpecified"
};
HRESULT st = executeAssembly(