diff options
author | Stephen Toub <stoub@microsoft.com> | 2015-04-03 06:52:58 -0400 |
---|---|---|
committer | Stephen Toub <stoub@microsoft.com> | 2015-04-03 06:52:58 -0400 |
commit | e2dab68cd90b8b79ab68ae31a0a6e641b7791329 (patch) | |
tree | aee3d09e593fa946e8526acbf8ba66022b9385ad | |
parent | 940483658c1b25f7f56fb3529a138090342afac1 (diff) | |
parent | 1836713388f47867ae5db7aca4aac8507daa3767 (diff) | |
download | coreclr-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.cpp | 7 |
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( |