diff --git a/.github/workflow-gen/StepExtensions.cs b/.github/workflow-gen/StepExtensions.cs
index 5e99c0d50..e5e6c8145 100644
--- a/.github/workflow-gen/StepExtensions.cs
+++ b/.github/workflow-gen/StepExtensions.cs
@@ -18,7 +18,7 @@ public static class StepExtensions
job.Step()
.Name("Setup .NET")
- .ActionsSetupDotNet("3e891b0cb619bf60e2c25674b222b8940e2c1c25", ["8.0.x", "9.0.203", "10.0.100"]);
+ .ActionsSetupDotNet("3e891b0cb619bf60e2c25674b222b8940e2c1c25", ["8.0.x", "9.0.203", "10.0.200"]);
// v4.1.0
}
@@ -38,7 +38,7 @@ public static class StepExtensions
public static void StepDotNetDevCerts(this Job job)
=> job.Step()
.Name("Dotnet devcerts")
- .Run("dotnet dev-certs https --trust");
+ .Run("SSL_CERT_DIR=$HOME/.aspnet/dev-certs/trust dotnet dev-certs https --trust");
public static void CachePlaywrightAssets(this Job job)
=> job.Step("playwright-cache")
diff --git a/.github/workflows/aspnetcore-authentication-jwtbearer-ci.yml b/.github/workflows/aspnetcore-authentication-jwtbearer-ci.yml
index 204d11bb5..87f505237 100644
--- a/.github/workflows/aspnetcore-authentication-jwtbearer-ci.yml
+++ b/.github/workflows/aspnetcore-authentication-jwtbearer-ci.yml
@@ -53,7 +53,7 @@ jobs:
dotnet-version: |-
8.0.x
9.0.203
- 10.0.100
+ 10.0.200
- name: Restore
run: dotnet restore aspnetcore-authentication-jwtbearer.slnf
- name: Verify Formatting
@@ -87,13 +87,13 @@ jobs:
dotnet-version: |-
8.0.x
9.0.203
- 10.0.100
+ 10.0.200
- name: Restore
run: dotnet restore aspnetcore-authentication-jwtbearer.slnf
- name: Build
run: dotnet build aspnetcore-authentication-jwtbearer.slnf --no-restore -c Release
- name: Dotnet devcerts
- run: dotnet dev-certs https --trust
+ run: SSL_CERT_DIR=$HOME/.aspnet/dev-certs/trust dotnet dev-certs https --trust
- name: Test - test/AspNetCore.Authentication.JwtBearer.Tests
run: dotnet test test/AspNetCore.Authentication.JwtBearer.Tests -c Release --no-build --logger "console;verbosity=normal" --logger "trx;LogFileName=test/AspNetCore.Authentication.JwtBearer.Tests-tests.trx" --collect:"XPlat Code Coverage"
- id: test-report-test-AspNetCore-Authentication-JwtBearer-Tests
@@ -176,7 +176,7 @@ jobs:
dotnet-version: |-
8.0.x
9.0.203
- 10.0.100
+ 10.0.200
- name: Tool restore
run: dotnet tool restore
- name: Pack aspnetcore-authentication-jwtbearer.slnf
diff --git a/.github/workflows/aspnetcore-authentication-jwtbearer-release.yml b/.github/workflows/aspnetcore-authentication-jwtbearer-release.yml
index 1ed59594a..95788b9da 100644
--- a/.github/workflows/aspnetcore-authentication-jwtbearer-release.yml
+++ b/.github/workflows/aspnetcore-authentication-jwtbearer-release.yml
@@ -68,7 +68,7 @@ jobs:
dotnet-version: |-
8.0.x
9.0.203
- 10.0.100
+ 10.0.200
- name: Pack aspnetcore-authentication-jwtbearer.slnf
run: dotnet pack -c Release aspnetcore-authentication-jwtbearer.slnf -o artifacts
- name: Tool restore
@@ -110,7 +110,7 @@ jobs:
dotnet-version: |-
8.0.x
9.0.203
- 10.0.100
+ 10.0.200
- name: List files
run: tree
shell: bash
diff --git a/.github/workflows/bff-ci.yml b/.github/workflows/bff-ci.yml
index 4d07d7401..b55003920 100644
--- a/.github/workflows/bff-ci.yml
+++ b/.github/workflows/bff-ci.yml
@@ -53,7 +53,7 @@ jobs:
dotnet-version: |-
8.0.x
9.0.203
- 10.0.100
+ 10.0.200
- name: Restore
run: dotnet restore bff.slnf
- name: Verify Formatting
@@ -87,13 +87,13 @@ jobs:
dotnet-version: |-
8.0.x
9.0.203
- 10.0.100
+ 10.0.200
- name: Restore
run: dotnet restore bff.slnf
- name: Build
run: dotnet build bff.slnf --no-restore -c Release
- name: Dotnet devcerts
- run: dotnet dev-certs https --trust
+ run: SSL_CERT_DIR=$HOME/.aspnet/dev-certs/trust dotnet dev-certs https --trust
- name: Test - test/Bff.Tests
run: dotnet test test/Bff.Tests -c Release --no-build --logger "console;verbosity=normal" --logger "trx;LogFileName=test/Bff.Tests-tests.trx" --collect:"XPlat Code Coverage"
- id: test-report-test-Bff-Tests
@@ -136,7 +136,7 @@ jobs:
dotnet-version: |-
8.0.x
9.0.203
- 10.0.100
+ 10.0.200
- name: Restore
run: dotnet restore bff.slnf
- name: Build
@@ -152,7 +152,7 @@ jobs:
if: steps.playwright-cache.outputs.cache-hit != 'true'
run: pwsh test/Hosts.Tests/bin/Release/net10.0/playwright.ps1 install --with-deps
- name: Dotnet devcerts
- run: dotnet dev-certs https --trust
+ run: SSL_CERT_DIR=$HOME/.aspnet/dev-certs/trust dotnet dev-certs https --trust
- name: Test - test/Hosts.Tests
run: dotnet test test/Hosts.Tests -c Release --no-build --logger "console;verbosity=normal" --logger "trx;LogFileName=test/Hosts.Tests-tests.trx" --collect:"XPlat Code Coverage"
- id: test-report-test-Hosts-Tests
@@ -223,7 +223,7 @@ jobs:
dotnet-version: |-
8.0.x
9.0.203
- 10.0.100
+ 10.0.200
- name: Tool restore
run: dotnet tool restore
- name: Pack bff.slnf
diff --git a/.github/workflows/bff-release.yml b/.github/workflows/bff-release.yml
index bdfeac09c..d82bf3a36 100644
--- a/.github/workflows/bff-release.yml
+++ b/.github/workflows/bff-release.yml
@@ -68,7 +68,7 @@ jobs:
dotnet-version: |-
8.0.x
9.0.203
- 10.0.100
+ 10.0.200
- name: Pack bff.slnf
run: dotnet pack -c Release bff.slnf -o artifacts
- name: Tool restore
@@ -110,7 +110,7 @@ jobs:
dotnet-version: |-
8.0.x
9.0.203
- 10.0.100
+ 10.0.200
- name: List files
run: tree
shell: bash
diff --git a/.github/workflows/docs-mcp-ci.yml b/.github/workflows/docs-mcp-ci.yml
index af8ffba6b..28475789d 100644
--- a/.github/workflows/docs-mcp-ci.yml
+++ b/.github/workflows/docs-mcp-ci.yml
@@ -53,7 +53,7 @@ jobs:
dotnet-version: |-
8.0.x
9.0.203
- 10.0.100
+ 10.0.200
- name: Restore
run: dotnet restore docs-mcp.slnf
- name: Verify Formatting
@@ -87,13 +87,13 @@ jobs:
dotnet-version: |-
8.0.x
9.0.203
- 10.0.100
+ 10.0.200
- name: Restore
run: dotnet restore docs-mcp.slnf
- name: Build
run: dotnet build docs-mcp.slnf --no-restore -c Release
- name: Dotnet devcerts
- run: dotnet dev-certs https --trust
+ run: SSL_CERT_DIR=$HOME/.aspnet/dev-certs/trust dotnet dev-certs https --trust
playwright:
name: Playwright tests
if: (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository) || (github.event_name == 'push') || (github.event_name == 'workflow_dispatch')
@@ -162,7 +162,7 @@ jobs:
dotnet-version: |-
8.0.x
9.0.203
- 10.0.100
+ 10.0.200
- name: Tool restore
run: dotnet tool restore
- name: Pack docs-mcp.slnf
diff --git a/.github/workflows/docs-mcp-release.yml b/.github/workflows/docs-mcp-release.yml
index 6581e10ea..5708fa0bf 100644
--- a/.github/workflows/docs-mcp-release.yml
+++ b/.github/workflows/docs-mcp-release.yml
@@ -68,7 +68,7 @@ jobs:
dotnet-version: |-
8.0.x
9.0.203
- 10.0.100
+ 10.0.200
- name: Pack docs-mcp.slnf
run: dotnet pack -c Release docs-mcp.slnf -o artifacts
- name: Tool restore
@@ -110,7 +110,7 @@ jobs:
dotnet-version: |-
8.0.x
9.0.203
- 10.0.100
+ 10.0.200
- name: List files
run: tree
shell: bash
diff --git a/.github/workflows/identity-server-ci.yml b/.github/workflows/identity-server-ci.yml
index ff60cbaa1..87a6b1957 100644
--- a/.github/workflows/identity-server-ci.yml
+++ b/.github/workflows/identity-server-ci.yml
@@ -53,7 +53,7 @@ jobs:
dotnet-version: |-
8.0.x
9.0.203
- 10.0.100
+ 10.0.200
- name: Restore
run: dotnet restore identity-server.slnf
- name: Verify Formatting
@@ -87,13 +87,13 @@ jobs:
dotnet-version: |-
8.0.x
9.0.203
- 10.0.100
+ 10.0.200
- name: Restore
run: dotnet restore identity-server.slnf
- name: Build
run: dotnet build identity-server.slnf --no-restore -c Release
- name: Dotnet devcerts
- run: dotnet dev-certs https --trust
+ run: SSL_CERT_DIR=$HOME/.aspnet/dev-certs/trust dotnet dev-certs https --trust
- name: Test - test/IdentityServer.IntegrationTests
run: dotnet test test/IdentityServer.IntegrationTests -c Release --no-build --logger "console;verbosity=normal" --logger "trx;LogFileName=test/IdentityServer.IntegrationTests-tests.trx" --collect:"XPlat Code Coverage"
- id: test-report-test-IdentityServer-IntegrationTests
@@ -150,7 +150,7 @@ jobs:
dotnet-version: |-
8.0.x
9.0.203
- 10.0.100
+ 10.0.200
- name: Restore
run: dotnet restore identity-server.slnf
- name: Build
@@ -166,7 +166,7 @@ jobs:
if: steps.playwright-cache.outputs.cache-hit != 'true'
run: pwsh test/IdentityServer.EndToEndTests/bin/Release/net10.0/playwright.ps1 install --with-deps
- name: Dotnet devcerts
- run: dotnet dev-certs https --trust
+ run: SSL_CERT_DIR=$HOME/.aspnet/dev-certs/trust dotnet dev-certs https --trust
- name: Test - test/IdentityServer.EndToEndTests
run: dotnet test test/IdentityServer.EndToEndTests -c Release --no-build --logger "console;verbosity=normal" --logger "trx;LogFileName=test/IdentityServer.EndToEndTests-tests.trx" --collect:"XPlat Code Coverage"
- id: test-report-test-IdentityServer-EndToEndTests
@@ -237,7 +237,7 @@ jobs:
dotnet-version: |-
8.0.x
9.0.203
- 10.0.100
+ 10.0.200
- name: Tool restore
run: dotnet tool restore
- name: Pack identity-server.slnf
diff --git a/.github/workflows/identity-server-release.yml b/.github/workflows/identity-server-release.yml
index e66d0e7a5..44432620d 100644
--- a/.github/workflows/identity-server-release.yml
+++ b/.github/workflows/identity-server-release.yml
@@ -68,7 +68,7 @@ jobs:
dotnet-version: |-
8.0.x
9.0.203
- 10.0.100
+ 10.0.200
- name: Pack identity-server.slnf
run: dotnet pack -c Release identity-server.slnf -o artifacts
- name: Tool restore
@@ -110,7 +110,7 @@ jobs:
dotnet-version: |-
8.0.x
9.0.203
- 10.0.100
+ 10.0.200
- name: List files
run: tree
shell: bash
diff --git a/.github/workflows/templates-release.yml b/.github/workflows/templates-release.yml
index ba659d74c..7a159d186 100644
--- a/.github/workflows/templates-release.yml
+++ b/.github/workflows/templates-release.yml
@@ -46,7 +46,7 @@ jobs:
dotnet-version: |-
8.0.x
9.0.203
- 10.0.100
+ 10.0.200
- name: Checkout target branch
if: github.event.inputs.branch != 'main'
run: git checkout ${{ github.event.inputs.branch }}
@@ -110,7 +110,7 @@ jobs:
dotnet-version: |-
8.0.x
9.0.203
- 10.0.100
+ 10.0.200
- name: List files
run: tree
shell: bash
diff --git a/Directory.Packages.props b/Directory.Packages.props
index d911c69d3..df346c133 100644
--- a/Directory.Packages.props
+++ b/Directory.Packages.props
@@ -21,7 +21,7 @@ that supports the target frameworks our products target (8, 9, 10) -->
8.0.1
- 10.0.0
+ 10.0.4
10.0.0
10.0.0
10.0.0
@@ -38,11 +38,11 @@ that supports the target frameworks our products target (8, 9, 10) -->
-
-
+
+
-
-
+
+
diff --git a/global.json b/global.json
index b48eef46e..066c2298e 100644
--- a/global.json
+++ b/global.json
@@ -1,6 +1,6 @@
{
"sdk": {
- "version": "10.0.100",
+ "version": "10.0.200",
"rollForward": "latestMajor",
"allowPrerelease": true
}
diff --git a/identity-server/templates/src/WebApp/TemplateWebApp.csproj b/identity-server/templates/src/WebApp/TemplateWebApp.csproj
index 231ca8b8b..e4fdaca08 100644
--- a/identity-server/templates/src/WebApp/TemplateWebApp.csproj
+++ b/identity-server/templates/src/WebApp/TemplateWebApp.csproj
@@ -1,15 +1,15 @@
- net9.0
+ net10.0
enable
enable
-
-
-
+
+
+