Skip to content

Commit

Permalink
Merge pull request #187 from DuendeSoftware/joe/net8
Browse files Browse the repository at this point in the history
Support .NET 8
  • Loading branch information
brockallen authored Nov 30, 2023
2 parents 09b2c93 + 53a5d56 commit 4f460d0
Show file tree
Hide file tree
Showing 124 changed files with 2,112 additions and 2,195 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- run: dotnet --info

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- run: dotnet --info

Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ docs/_build/
tools/

# Visual Studio Code workspace options
.vscode
**/.vscode/settings.json

# IdentityServer temp files
identityserver4_log.txt
Expand Down
244 changes: 244 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,244 @@
{
"version": "0.2.0",
"compounds": [
{
"name": "IdentityServer + API",
"configurations": ["IdentityServer", "Api"],
"presentation": {
"hidden": false,
"group": "10-compunds",
// "order": 10
}
},
{
"name": "IdentityServer + API.DPoP",
"configurations": ["IdentityServer", "Api with DPoP"],
"presentation": {
"hidden": false,
"group": "10-compunds",
// "order": 10
}
},
],
"configurations": [
{
"name": "IdentityServer",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-identityserver",
"program": "${workspaceFolder}/samples/IdentityServer/bin/Debug/net8.0/IdentityServer.dll",
"args": [],
"cwd": "${workspaceFolder}/samples/IdentityServer",
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"console": "externalTerminal",
"presentation": {
"group": "Infrastructure",
"hidden": false,
"order": 10
}
},
{
"name": "Api",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-api",
"program": "${workspaceFolder}/samples/Api/bin/Debug/net8.0/Api.dll",
"args": [],
"cwd": "${workspaceFolder}/samples/Api",
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"console": "externalTerminal",
"presentation": {
"group": "Infrastructure",
"hidden": false,
"order": 20
}
},
{
"name": "Api with DPoP",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-api.dpop",
"program": "${workspaceFolder}/samples/Api.DPoP/bin/Debug/net8.0/Api.DPoP.dll",
"args": [],
"cwd": "${workspaceFolder}/samples/Api.DPoP",
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"console": "externalTerminal",
"presentation": {
"group": "Infrastructure",
"hidden": false,
"order": 30
}
},
{
"name": "Isolated Api",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-api.isolated",
"program": "${workspaceFolder}/samples/Api.Isolated/bin/Debug/net8.0/Api.Isolated.dll",
"args": [],
"cwd": "${workspaceFolder}/samples/Api.Isolated",
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"console": "externalTerminal",
"presentation": {
"group": "Infrastructure",
"hidden": false,
"order": 40
}
},
{
"name": "JS6",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-js6",
"program": "${workspaceFolder}/samples/JS6/bin/Debug/net6.0/JS6.dll",
"args": [],
"cwd": "${workspaceFolder}/samples/JS6",
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
},
"console": "integratedTerminal",
"presentation": {
"hidden": false,
"order": 10
}
},
{
"name": "JS6 EF",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-js6ef",
"program": "${workspaceFolder}/samples/JS6.EF/bin/Debug/net6.0/JS6.EF.dll",
"args": [],
"cwd": "${workspaceFolder}/samples/JS6.EF",
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
},
"console": "integratedTerminal",
"presentation": {
"hidden": false,
"order": 10
}
},
{
"name": "JS Yarp",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-jsyarp",
"program": "${workspaceFolder}/samples/JS.Yarp/bin/Debug/net6.0/JS.Yarp.dll",
"args": [],
"cwd": "${workspaceFolder}/samples/JS.Yarp",
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
},
"console": "externalTerminal",
"presentation": {
"hidden": false,
"order": 10
}
},
{
"name": "JS6 DPoP",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-js6dpop",
"program": "${workspaceFolder}/samples/JS6.DPoP/bin/Debug/net6.0/JS6.DPoP.dll",
"args": [],
"cwd": "${workspaceFolder}/samples/JS6.DPoP",
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
},
"console": "integratedTerminal",
"presentation": {
"hidden": false,
"order": 10
}
},
{
"name": "JS8",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-js8",
"program": "${workspaceFolder}/samples/JS8/bin/Debug/net8.0/JS8.dll",
"args": [],
"cwd": "${workspaceFolder}/samples/JS8",
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
},
"console": "integratedTerminal",
"presentation": {
"hidden": false,
"order": 10
}
},
{
"name": "JS8 DPoP",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-js8dpop",
"program": "${workspaceFolder}/samples/JS8.DPoP/bin/Debug/net8.0/JS8.DPoP.dll",
"args": [],
"cwd": "${workspaceFolder}/samples/JS8.DPoP",
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
},
"console": "integratedTerminal",
"presentation": {
"hidden": false,
"order": 10
}
},
{
"name": "JS8 EF",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build-js8ef",
"program": "${workspaceFolder}/samples/JS8.EF/bin/Debug/net8.0/JS8.EF.dll",
"args": [],
"cwd": "${workspaceFolder}/samples/JS8.EF",
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
},
"console": "integratedTerminal",
"presentation": {
"hidden": false,
"order": 10
}
},
]
}
Loading

0 comments on commit 4f460d0

Please sign in to comment.