From 8170b7eb05db30a18e314b88ac13b8dcdcf4fc61 Mon Sep 17 00:00:00 2001 From: Jan Kotas Date: Thu, 22 Nov 2018 02:11:13 -0800 Subject: [PATCH] Update netcore-hosting.md Delete references to AppDomainCompatSwitch. It was never supported in .NET Core. --- docs/core/tutorials/netcore-hosting.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/core/tutorials/netcore-hosting.md b/docs/core/tutorials/netcore-hosting.md index e496ccc80ae9d..9b861bd0ed0a6 100644 --- a/docs/core/tutorials/netcore-hosting.md +++ b/docs/core/tutorials/netcore-hosting.md @@ -76,7 +76,6 @@ Common AppDomain properties include: * `APP_NI_PATHS` This list is very similar to APP_PATHS except that it's meant to be paths that will be probed for native images. * `NATIVE_DLL_SEARCH_DIRECTORIES` This property is a list of paths the loader should probe when looking for native DLLs called via p/invoke. * `PLATFORM_RESOURCE_ROOTS` This list includes paths to probe in for resource satellite assemblies (in culture-specific sub-directories). -* `AppDomainCompatSwitch` This string specifies which compatibility quirks should be used for assemblies without an explicit Target Framework Moniker (an assembly-level attribute indicating which Framework an assembly is meant to run against). Typically, this should be set to `"UseLatestBehaviorWhenTFMNotSpecified"` but some hosts may prefer to get older Silverlight or Windows Phone compatibility quirks, instead. In our [simple sample host](https://github.com/dotnet/samples/tree/master/core/hosting), these properties are set up as follows: