Skip to content

Commit 97e1fb6

Browse files
Merge pull request #67 from IowaComputerGurus/copilot/update-net-version-9-0
Update .NET Version to 9.0
2 parents 85c6108 + 62d90e0 commit 97e1fb6

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/ci-build.yml

Lines changed: 1 addition & 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@v5
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]

.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@v5
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/EncryptionKeyGenerator/EncryptionKeyGenerator.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>net8.0</TargetFramework>
5+
<TargetFramework>net9.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
</PropertyGroup>

src/NetCore.Utilities.Tests/NetCore.Utilities.Tests.csproj

Lines changed: 2 additions & 2 deletions
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.NetCore.Utilities.Tests</RootNamespace>
77
<OutputType>Library</OutputType>
@@ -12,7 +12,7 @@
1212
<PrivateAssets>all</PrivateAssets>
1313
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1414
</PackageReference>
15-
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0" />
15+
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.0" />
1616
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
1717
<PackageReference Include="Moq" Version="4.20.72" />
1818
<PackageReference Include="xunit" Version="2.9.2" />

src/NetCore.Utilities/NetCore.Utilities.csproj

Lines changed: 5 additions & 5 deletions
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
<RootNamespace>ICG.NetCore.Utilities</RootNamespace>
66
<GenerateDocumentationFile>true</GenerateDocumentationFile>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
@@ -37,10 +37,10 @@
3737
</PropertyGroup>
3838

3939
<ItemGroup>
40-
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0" />
41-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
42-
<PackageReference Include="Microsoft.Extensions.Options" Version="8.0.0" />
43-
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0" />
40+
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.0" />
41+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.0" />
42+
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.0" />
43+
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="9.0.0" />
4444
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
4545
<PrivateAssets>all</PrivateAssets>
4646
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

0 commit comments

Comments
 (0)