Skip to content

Commit 3517c8d

Browse files
committed
update to net8.0
1 parent 646ae74 commit 3517c8d

File tree

10 files changed

+11
-11
lines changed

10 files changed

+11
-11
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# [Choice] .NET version: 5.0, 3.1, 2.1
2-
ARG VARIANT=7.0
2+
ARG VARIANT=8.0
33
FROM mcr.microsoft.com/vscode/devcontainers/dotnet:dev-${VARIANT}
44

55
# [Option] Install Node.js

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"dockerfile": "Dockerfile",
55
"args": {
66
// Update 'VARIANT' to pick a .NET Core version: 2.1, 3.1
7-
"VARIANT": "7.0",
7+
"VARIANT": "8.0",
88
// Options
99
"INSTALL_NODE": "true",
1010
"NODE_VERSION": "lts/*",

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414
- name: Setup .NET
1515
uses: actions/setup-dotnet@v1
1616
with:
17-
dotnet-version: 7.0.x
17+
dotnet-version: 8.0.x
1818
- name: Test
1919
run: ./build.sh test

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup .NET
2020
uses: actions/setup-dotnet@v1
2121
with:
22-
dotnet-version: 7.0.x
22+
dotnet-version: 8.0.x
2323
- name: Pack
2424
run: ./build.sh "pack --version=$RELEASE_VERSION"
2525
- name: Push

.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"type": "coreclr",
77
"request": "launch",
88
"preLaunchTask": "build-server",
9-
"program": "${workspaceFolder}/samples/Server/bin/Debug/net7.0/Server.dll",
9+
"program": "${workspaceFolder}/samples/Server/bin/Debug/net8.0/Server.dll",
1010
"args": [
1111
"--urls",
1212
"https://localhost:5001"
@@ -29,7 +29,7 @@
2929
"type": "coreclr",
3030
"request": "launch",
3131
"preLaunchTask": "build-api",
32-
"program": "${workspaceFolder}/samples/Api/bin/Debug/net7.0/Api.dll",
32+
"program": "${workspaceFolder}/samples/Api/bin/Debug/net8.0/Api.dll",
3333
"args": [
3434
"--urls",
3535
"https://localhost:5002"

build/targets.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<OutputType>Exe</OutputType>
66
</PropertyGroup>
77

samples/Api/Api.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
66
</PropertyGroup>
77

samples/Server/Server.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<IsShipping>false</IsShipping>
66
<SignAssembly>false</SignAssembly>
77
<ImplicitUsings>enable</ImplicitUsings>

src/Common.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<PackageProjectUrl>https://github.com/thomasduft/openiddict-ui</PackageProjectUrl>
1515
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
1616
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
17-
<TargetFramework>net7.0</TargetFramework>
17+
<TargetFramework>net8.0</TargetFramework>
1818
</PropertyGroup>
1919

2020
</Project>

tests/OpenIddict.UI.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net7.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<AssemblyName>tomware.OpenIddict.UI.Tests</AssemblyName>
66
<RootNamespace>tomware.OpenIddict.UI.Tests</RootNamespace>
77
<IsPackable>false</IsPackable>

0 commit comments

Comments
 (0)