From: Vitek Karas Date: Thu, 13 Feb 2020 08:53:51 +0000 (-0800) Subject: Fix ordering of probe locations in assembly resolution doc X-Git-Tag: submit/tizen/20210909.063632~9750^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=546699baad6a2da35b1865458085318b9d91496c;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Fix ordering of probe locations in assembly resolution doc And refer to the detailed doc about this topic --- diff --git a/docs/design/features/assembly-conflict-resolution.md b/docs/design/features/assembly-conflict-resolution.md index 530ea3b..472043a 100644 --- a/docs/design/features/assembly-conflict-resolution.md +++ b/docs/design/features/assembly-conflict-resolution.md @@ -17,19 +17,12 @@ Since each layer (and other probing locations) can contain the same assembly by #### Probe Ordering The probing locations consists of: 1. Serving Location -1. Shared Store -1. Framework directory(s) from higher to lower 1. App directory -1. Additional locations specified in runtimeconfig.dev.json file - -For example, here's the probing order on Windows when running a non-published folder (in order to get additional locations from the app.runtimeconfig.dev.json file) -* `C:\\Program Files (x86)\\coreservicing\\x64` -* `C:\\Program Files (x86)\\coreservicing\\pkgs` -* `C:\\Program files\\dotnet\\shared\\Microsoft.NETCore.App\\2.0.0` -* (app location) -* `C:\\Users\\\\.nuget\\packages` - `C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackagesFallback` -* `C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder` +1. Framework directory(s) from higher to lower +1. Shared Store +1. Additional locations specified in `runtimeconfig.dev.json` or via `--additionalprobingpath` file + +Detailed description of the exact probe locations is described in [host-probing](host-probing.md). Once a deps.json entry has been found in a probe location, no further probes are performed for that entry.