Skip to content

Commit fbf8b72

Browse files
committed
chore: upgrade target framework from net8.0 to net9.0 across all projects
1 parent e78ab67 commit fbf8b72

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "microwf",
3-
"image": "mcr.microsoft.com/devcontainers/dotnet:1-8.0-bookworm",
3+
"image": "mcr.microsoft.com/devcontainers/dotnet:1-9.0-bookworm",
44
"features": {
55
"ghcr.io/devcontainers/features/node:1": {
66
"installNodeVersion": "lts/*"

.vscode/launch.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"type": "coreclr",
77
"request": "launch",
88
"preLaunchTask": "build:targets",
9-
"program": "${workspaceFolder}/build/bin/Debug/net8.0/targets.dll",
9+
"program": "${workspaceFolder}/build/bin/Debug/net9.0/targets.dll",
1010
"args": [
1111
"pack --version=0.0.2&key=1234567890"
1212
],
@@ -19,7 +19,7 @@
1919
"type": "coreclr",
2020
"request": "launch",
2121
"preLaunchTask": "build:WebApi",
22-
"program": "${workspaceRoot}/samples/WebApi/bin/Debug/net8.0/WebApi.dll",
22+
"program": "${workspaceRoot}/samples/WebApi/bin/Debug/net9.0/WebApi.dll",
2323
"args": [
2424
"--urls",
2525
"https://localhost:5001"
@@ -39,7 +39,7 @@
3939
"type": "coreclr",
4040
"request": "launch",
4141
"preLaunchTask": "build:ConsoleClient",
42-
"program": "${workspaceRoot}/samples/ConsoleClient/bin/Debug/net8.0/ConsoleClient.dll",
42+
"program": "${workspaceRoot}/samples/ConsoleClient/bin/Debug/net9.0/ConsoleClient.dll",
4343
"args": [],
4444
"cwd": "${workspaceRoot}/samples/ConsoleClient",
4545
"stopAtEntry": false,

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>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<OutputType>Exe</OutputType>
66

77
<ImplicitUsings>enable</ImplicitUsings>

samples/ConsoleClient/ConsoleClient.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>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<OutputType>Exe</OutputType>
66
</PropertyGroup>
77

samples/WebApi/WebApi.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>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
77
<LangVersion>latest</LangVersion>

src/microwf.AspNetCoreEngine/microwf.AspNetCoreEngine.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>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<AssemblyName>tomware.Microwf.AspNetCoreEngine</AssemblyName>
66
<RootNamespace>tomware.Microwf.Engine</RootNamespace>
77
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>

src/microwf.Domain/microwf.Domain.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>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<AssemblyName>tomware.Microwf.Domain</AssemblyName>
66
<RootNamespace>tomware.Microwf.Domain</RootNamespace>
77
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>

src/microwf.Infrastructure/microwf.Infrastructure.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>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<AssemblyName>tomware.Microwf.Infrastructure</AssemblyName>
66
<RootNamespace>tomware.Microwf.Infrastructure</RootNamespace>
77
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>

tests/microwf.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>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<AssemblyName>tomware.Microwf.Tests</AssemblyName>
66
<RootNamespace>tomware.Microwf.Tests</RootNamespace>
77
<IsPackable>false</IsPackable>

0 commit comments

Comments
 (0)