-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
migrations: use .net 7 latest version (#5)
this changeset is to upgrade the devcontainer to .net 7 latest version from .net 6. - use .net 7 bullseye image - use a global.json to ensure the minimal required sdk when not running from devcontainer - update docs with more links to find .net versions and download links BREAKING CHANGE: this version of devcontainer uses the latest bullseye version of .net 7
- Loading branch information
1 parent
eef1be6
commit 02eefae
Showing
3 changed files
with
12 additions
and
5 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
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
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,7 @@ | ||
{ | ||
"sdk": { | ||
"version": "7.0.203", | ||
"allowPrerelease": false, | ||
"rollForward": "latestMinor" | ||
} | ||
} |