Skip to content

Commit 6e34320

Browse files
Merge pull request #86 from IowaComputerGurus/copilot/update-dotnet-version-9-0
Update .NET Version to 9.0
2 parents 93b2f0d + 277e778 commit 6e34320

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

.github/workflows/ci-build.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Ensure .NET Installed
2222
uses: actions/setup-dotnet@v4
2323
with:
24-
dotnet-version: 8.0.x
24+
dotnet-version: 9.0.x
2525

2626
- name: Install GitVersion
2727
uses: gittools/actions/gitversion/[email protected]
@@ -58,6 +58,11 @@ jobs:
5858
with:
5959
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
6060

61+
- name: Ensure .NET Installed
62+
uses: actions/setup-dotnet@v4
63+
with:
64+
dotnet-version: 9.0.x
65+
6166
- name: Cache SonarCloud packages
6267
uses: actions/cache@v4
6368
with:

.github/workflows/release-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Ensure .NET Installed
2121
uses: actions/setup-dotnet@v4
2222
with:
23-
dotnet-version: 8.0.x
23+
dotnet-version: 9.0.x
2424

2525
- name: Install GitVersion
2626
uses: gittools/actions/gitversion/[email protected]

src/AspNetCore.Utilities.Tests/AspNetCore.Utilities.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
<IsPackable>false</IsPackable>
66
<RootNamespace>ICG.AspNetCore.Utilities.Tests</RootNamespace>
77
<OutputType>Library</OutputType>

src/AspNetCore.Utilities/AspNetCore.Utilities.csproj

Lines changed: 3 additions & 3 deletions
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
<RootNamespace>ICG.AspNetCore.Utilities</RootNamespace>
66
<GenerateDocumentationFile>true</GenerateDocumentationFile>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
@@ -14,7 +14,7 @@
1414
<PackageId>ICG.AspNetCore.Utilities</PackageId>
1515
<Title>AspNetCore Utilities</Title>
1616
<Description>A collection of utilities designed to impove the unit-testability or speed development of AspNetCore development projects.</Description>
17-
<Copyright>Copyright 2024, IowaComputerGurus, Subject to the MIT License</Copyright>
17+
<Copyright>Copyright 2025, IowaComputerGurus, Subject to the MIT License</Copyright>
1818
<PackageProjectUrl>https://github.com/IowaComputerGurus/aspnetcore.utilities</PackageProjectUrl>
1919
<PackageTags>aspnetcore;utility;unit-testing</PackageTags>
2020
<RepositoryUrl>https://github.com/IowaComputerGurus/aspnetcore.utilities</RepositoryUrl>
@@ -37,7 +37,7 @@
3737
</ItemGroup>
3838

3939
<ItemGroup>
40-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.1" />
40+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.11" />
4141
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
4242
<PrivateAssets>all</PrivateAssets>
4343
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

0 commit comments

Comments
 (0)