Skip to content

Commit 9ea0622

Browse files
authored
Merge pull request #363 from SAFE-Stack/known-issues
Add known issues page for dotnet paket restore error when starting server
2 parents 4c6a2a0 + 5b83924 commit 9ea0622

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

docs/knownIssues.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Known Issues
2+
3+
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).
4+
5+
## Server not starting: error: "dotnet paket restore" exited with code -532462766
6+
7+
.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.
8+
9+
If for some reason you can not use a newer SDK version, pin the SDK version using`global.json`:
10+
11+
```
12+
{
13+
"sdk": {
14+
"version": "8.0.206"
15+
}
16+
}
17+
```

mkdocs.yml

+1
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ nav:
136136
- SAFE-Compatible UI Components: "awesome-safe-components.md"
137137
- Learning: "learning.md"
138138
- Creating a SAFE Stack App from Scratch: "safe-from-scratch.md"
139+
- Known Issues: "knownIssues.md"
139140
- News: "news.md"
140141
- Support: "support.md"
141142
- Testimonials: "testimonials.md"

0 commit comments

Comments
 (0)