Skip to content

Commit 72362a7

Browse files
Merge pull request #64 from IowaComputerGurus/copilot/update-dotnet-version-9-0
Update .NET Version to 9.0
2 parents 9e2ae75 + f3e8cd8 commit 72362a7

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

.github/workflows/ci-build.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ jobs:
2424
- uses: actions/checkout@v6
2525
with:
2626
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
27+
28+
- name: Ensure .NET Installed
29+
uses: actions/setup-dotnet@v5
30+
with:
31+
dotnet-version: 9.0.x
2732

2833
- name: Install GitVersion
2934
uses: gittools/actions/gitversion/setup@v3.1.11

.github/workflows/release-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Ensure .NET Installed
2323
uses: actions/setup-dotnet@v5
2424
with:
25-
dotnet-version: 8.0.x
25+
dotnet-version: 9.0.x
2626

2727
- name: Install GitVersion
2828
uses: gittools/actions/gitversion/setup@v3.1.11

src/AspNetCore.Utilities.Bootstrap5TagHelpers.Sample/AspNetCore.Utilities.Bootstrap5TagHelpers.Sample.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
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
</PropertyGroup>

src/AspNetCore.Utilities.Bootstrap5TagHelpers.Tests/AspNetCore.Utilities.Bootstrap5TagHelpers.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.Bootstrap5TagHelpers.Tests</RootNamespace>
77
<OutputType>Library</OutputType>

src/AspNetCore.Utilities.Bootstrap5TagHelpers/AspNetCore.Utilities.Bootstrap5TagHelpers.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.Bootstrap5TagHelpers</RootNamespace>
66
<GenerateDocumentationFile>true</GenerateDocumentationFile>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
@@ -14,7 +14,7 @@
1414
<PackageId>ICG.AspNetCore.Utilities.Bootstrap5TagHelpers</PackageId>
1515
<Title>AspNetCore Utilities Bootstrap5 TagHelpers</Title>
1616
<Description>A collection of TagHelpers making Bootstrap5 utilization easier for AspNetCore 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.bootstrap5taghelpers</PackageProjectUrl>
1919
<PackageTags>aspnetcore;utility;bootstrap5;ui</PackageTags>
2020
<RepositoryUrl>https://github.com/IowaComputerGurus/aspnetcore.utilities.bootstrap5taghelpers</RepositoryUrl>
@@ -38,7 +38,7 @@
3838
</ItemGroup>
3939

4040
<ItemGroup>
41-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
41+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.0" />
4242
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
4343
<PrivateAssets>all</PrivateAssets>
4444
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

0 commit comments

Comments
 (0)