Skip to content

Commit

Permalink
Merge pull request #166 from MakingSense/upgrade-to-net6
Browse files Browse the repository at this point in the history
Upgrade dotnet from 5.0.x to 6.0.x
  • Loading branch information
RodrigoPereyraDiaz authored May 20, 2022
2 parents 8a3d32f + c240919 commit 04cdc07
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: '5.0.x'
dotnet-version: '6.0.x'
- name: Restore tools
run: dotnet tool restore
- name: Verify code format
Expand Down
2 changes: 1 addition & 1 deletion MailerQ.Test/MailerQ.Test.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net5</TargetFramework>
<TargetFramework>net6</TargetFramework>

<IsPackable>false</IsPackable>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion MailerQ/MailerQ.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
Expand Down

0 comments on commit 04cdc07

Please sign in to comment.