Skip to content

Commit b5f7c54

Browse files
authored
Upgrade target framework from net9.0 to net10.0 (#825)
* Upgrade target framework from net9.0 to net10.0 * Update .NET version to 10.0.x in workflow * Upgrade .NET version from 9.0.x to 10.0.x * Update .NET version from 9.0.x to 10.0.x * Upgrade target framework from net9.0 to net10.0 * Upgrade target framework from net9.0 to net10.0 * Upgrade target framework from net9.0 to net10.0
1 parent 1a457b5 commit b5f7c54

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
uses: actions/setup-dotnet@v5
4141
if: ${{ matrix.language == 'csharp' }}
4242
with:
43-
dotnet-version: 9.0.x
43+
dotnet-version: 10.0.x
4444

4545
- name: Autobuild
4646
uses: github/codeql-action/autobuild@v4

.github/workflows/cron.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup .NET
1818
uses: actions/setup-dotnet@v5
1919
with:
20-
dotnet-version: 9.0.x
20+
dotnet-version: 10.0.x
2121
- name: configure aws credentials
2222
uses: aws-actions/configure-aws-credentials@v5
2323
with:
@@ -44,7 +44,7 @@ jobs:
4444
- name: Setup .NET
4545
uses: actions/setup-dotnet@v5
4646
with:
47-
dotnet-version: 9.0.x
47+
dotnet-version: 10.0.x
4848
- name: configure aws credentials
4949
uses: aws-actions/configure-aws-credentials@v5
5050
with:

.github/workflows/dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup .NET
1717
uses: actions/setup-dotnet@v5
1818
with:
19-
dotnet-version: 9.0.x
19+
dotnet-version: 10.0.x
2020
- name: Restore dependencies
2121
run: dotnet restore
2222
- name: Build

ServiceMonitor.Cleaner/ServiceMonitor.Cleaner.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net9.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
</PropertyGroup>

ServiceMonitor.Dashboard/ServiceMonitor.Dashboard.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>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
</PropertyGroup>

ServiceMonitor.Mailer/ServiceMonitor.Mailer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net9.0</TargetFramework>
5+
<TargetFramework>net10.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
</PropertyGroup>

ServiceMonitor.Test/ServiceMonitor.Test.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>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55

66
<IsPackable>false</IsPackable>
77
</PropertyGroup>

0 commit comments

Comments
 (0)