Skip to content

Commit

Permalink
Merge pull request #363 from SAFE-Stack/known-issues
Browse files Browse the repository at this point in the history
Add known issues page for dotnet paket restore error when starting server
  • Loading branch information
Larocceau authored Aug 9, 2024
2 parents 4c6a2a0 + 5b83924 commit 9ea0622
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
17 changes: 17 additions & 0 deletions docs/knownIssues.md
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"
}
}
```
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ nav:
- SAFE-Compatible UI Components: "awesome-safe-components.md"
- Learning: "learning.md"
- Creating a SAFE Stack App from Scratch: "safe-from-scratch.md"
- Known Issues: "knownIssues.md"
- News: "news.md"
- Support: "support.md"
- Testimonials: "testimonials.md"
Expand Down

0 comments on commit 9ea0622

Please sign in to comment.