Skip to content

Commit bffff97

Browse files
Merge pull request #58 from IowaComputerGurus/feature/net-6
Updated to .NET 6
2 parents 328d7d7 + 6ad58f4 commit bffff97

File tree

5 files changed

+8
-12
lines changed

5 files changed

+8
-12
lines changed

.github/workflows/ci-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Ensure .NET Installed
2222
uses: actions/setup-dotnet@v1
2323
with:
24-
dotnet-version: 5.0.x
24+
dotnet-version: 6.0.x
2525

2626
- name: Install GitVersion
2727
run: dotnet tool install --global GitVersion.Tool

.github/workflows/release-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Ensure .NET Installed
2121
uses: actions/setup-dotnet@v1
2222
with:
23-
dotnet-version: 5.0.x
23+
dotnet-version: 6.0.x
2424

2525
- name: Install GitVersion
2626
run: dotnet tool install --global GitVersion.Tool

icgAppIcon.png

-107 KB
Binary file not shown.

src/AspNetCore.Utilities.Tests/AspNetCore.Utilities.Tests.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net5.0</TargetFramework>
4+
<TargetFramework>net6.0</TargetFramework>
55
<IsPackable>false</IsPackable>
66
<RootNamespace>ICG.AspNetCore.Utilities.Tests</RootNamespace>
77
<OutputType>Library</OutputType>
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
11+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
1212
<PackageReference Include="Moq" Version="4.16.1" />
1313
<PackageReference Include="xunit" Version="2.4.1" />
1414
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">

src/AspNetCore.Utilities/AspNetCore.Utilities.csproj

+4-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<Version>0.0.0</Version>
5-
</PropertyGroup>
6-
7-
<PropertyGroup>
8-
<TargetFramework>net5.0</TargetFramework>
4+
<TargetFramework>net6.0</TargetFramework>
95
<RootNamespace>ICG.AspNetCore.Utilities</RootNamespace>
106
<GenerateDocumentationFile>true</GenerateDocumentationFile>
117
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
@@ -41,9 +37,9 @@
4137
</ItemGroup>
4238

4339
<ItemGroup>
44-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.0" />
45-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
46-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0">
40+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
41+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
42+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
4743
<PrivateAssets>all</PrivateAssets>
4844
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
4945
</PackageReference>

0 commit comments

Comments
 (0)