diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index 90c45b483..9ec00c266 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -3,11 +3,11 @@
{
"name": "Full",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
- "image": "mcr.microsoft.com/dotnet/sdk:9.0-preview",
+ "image": "mcr.microsoft.com/dotnet/sdk:9.0",
"features": {
"ghcr.io/devcontainers/features/dotnet:2": {
"version": "latest",
- "additionalVersions": "7.0,6.0,5.0,3.1"
+ "additionalVersions": "8.0,7.0,6.0,5.0,3.1"
}
},
diff --git a/.devcontainer/post-install.sh b/.devcontainer/post-install.sh
index 34cef2fcd..0c990f19e 100644
--- a/.devcontainer/post-install.sh
+++ b/.devcontainer/post-install.sh
@@ -1,7 +1,7 @@
#/bin/bash
# Install docfx (should be aligned with docs-deploy.yml)
-dotnet tool install --global docfx --version 2.74.1
+dotnet tool restore
# Trust dotnet developer certs
dotnet dev-certs https --check --trust
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5e7ea6ede..2b29eaf80 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,10 @@ All notable changes to **bUnit** will be documented in this file. The project ad
## [Unreleased]
+### Added
+
+- Bumped .NET 9 version dependencies to stable packages.
+
## [1.35.3] - 2024-11-12
### Added
diff --git a/Directory.Packages.props b/Directory.Packages.props
index 7e21294b6..c25fef9bc 100644
--- a/Directory.Packages.props
+++ b/Directory.Packages.props
@@ -97,16 +97,16 @@
-
-
-
+
+
+
-
-
+
+
-
-
-
+
+
+
diff --git a/global.json b/global.json
index 83105ca8e..18562b58c 100644
--- a/global.json
+++ b/global.json
@@ -1,6 +1,6 @@
{
"sdk": {
"rollForward": "latestMajor",
- "allowPrerelease": true
+ "allowPrerelease": false
}
}