The property list was broken - the keys list was missing a comma between two entries,
so they got merged into one string. And the values list was missing one value too.
Commit migrated from https://github.com/dotnet/coreclr/commit/
71327d39fd733ad736280606e381f6c058be0fbd
W("TRUSTED_PLATFORM_ASSEMBLIES"),
W("APP_PATHS"),
W("APP_NI_PATHS"),
- W("NATIVE_DLL_SEARCH_DIRECTORIES")
- W("AppDomainCompatSwitch"),
+ W("NATIVE_DLL_SEARCH_DIRECTORIES"),
+ W("AppDomainCompatSwitch")
};
const wchar_t *property_values[] = {
// TRUSTED_PLATFORM_ASSEMBLIES
appNiPath,
// NATIVE_DLL_SEARCH_DIRECTORIES
nativeDllSearchDirs,
+ // AppDomainCompatSwitch
+ W("UseLatestBehaviorWhenTFMNotSpecified")
};