Skip to content

Add known issues page for dotnet paket restore error when starting server #363

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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