-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #363 from SAFE-Stack/known-issues
Add known issues page for dotnet paket restore error when starting server
- Loading branch information
Showing
2 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Known Issues | ||
|
||
This page contains a (hopefully short) list of higher impact bugs that affect the SAFE template. It is not our intention to make an exhaustive list here; for all issues, check [GitHub](https://github.com/SAFE-Stack/SAFE-template/issues). | ||
|
||
## Server not starting: error: "dotnet paket restore" exited with code -532462766 | ||
|
||
.NET SDK 8.0.300 introduced a bug that caused the Server startup to fail with a paket error (`"dotnet paket restore" exited with code -532462766`). This has been resolved in SDK version 8.0.303. | ||
|
||
If for some reason you can not use a newer SDK version, pin the SDK version using`global.json`: | ||
|
||
``` | ||
{ | ||
"sdk": { | ||
"version": "8.0.206" | ||
} | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters