Skip to content

Commit

Permalink
Merge pull request #1 from swisschain/dotnet5
Browse files Browse the repository at this point in the history
Migrated to .net 5.
  • Loading branch information
KonstantinRyazantsev committed Mar 5, 2021
2 parents 2bb53c0 + e2acee8 commit 0fffe0b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/DeployNuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.100
dotnet-version: 5.0.103
- name: Build
run: dotnet build --configuration Release
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ValidateCommit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.100
dotnet-version: 5.0.103
- name: Build
run: dotnet build --configuration Release
- name: Test
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="MassTransit" Version="7.0.2" />
<PackageReference Include="Swisschain.Extensions.Idempotency" Version="2.0.0" />
<PackageReference Include="MassTransit" Version="7.1.6" />
<PackageReference Include="Swisschain.Extensions.Idempotency" Version="3.0.0" />
</ItemGroup>

</Project>

0 comments on commit 0fffe0b

Please sign in to comment.