Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/core.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSafia Abdalla <safia@microsoft.com>2022-09-09 01:02:29 +0300
committerGitHub <noreply@github.com>2022-09-09 01:02:29 +0300
commit049d65c5b0c7ef8c371b7f113813f8753c8e2a57 (patch)
tree56d2f1b656330f45286128136b807429ef1d4c89
parentb5ab9b3b2ea5c6da10c82677c0f219daaae2035c (diff)
Update directions to copy from shared runtimesafia/user-jwts-bug
-rw-r--r--release-notes/7.0/known-issues.md17
1 files changed, 10 insertions, 7 deletions
diff --git a/release-notes/7.0/known-issues.md b/release-notes/7.0/known-issues.md
index d6185dfa..21402d6e 100644
--- a/release-notes/7.0/known-issues.md
+++ b/release-notes/7.0/known-issues.md
@@ -139,14 +139,17 @@ To circumvent this issue, you will need to modify the local installation to prob
}
```
-3. Locate the `dotnet-user-jwts.runtimeconfig.json` file and add a reference to your global NuGet packages directory under additional probing paths.
+3. Locate the `Microsoft.Extensions.Configuration.Binder` assembly in the directory associated with the `Microsoft.AspNetCore.App` shared runtime. This will typically be located in a path as follows:
-```diff
-{
-+ "additionalProbingPaths": [
-+ "/Users/homedirname/.nuget/packages/"
-+ ]
-}
+```
+~/.dotnet/shared/Microsoft.AspNetCore.App/7.0.0-rc.1.22415.4
+```
+
+4. Copy the assembly from Step 3 to the `user-jwts` tool directory from Step 1.
+
+```
+$ cp ~/.dotnet/shared/Microsoft.AspNetCore.App/7.0.0-rc.1.22415.4/Microsoft.Extensions.Configuration.Binder.dll
+~/.dotnet/sdk/7.0.100-rc.2.22419.24/DotnetTools/dotnet-user-jwts/7.0.0-rc.1.22415.4/tools/net7.0/any
```
This issue will be resolved in .NET 7 RC 2.