Skip to content

Commit

Permalink
Update to .NET 5 final release
Browse files Browse the repository at this point in the history
  • Loading branch information
k94ll13nn3 committed Nov 11, 2020
1 parent 553722e commit 8a9c005
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,6 @@ jobs:
fetch-depth: 0 # for minver
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.100-rc.2.20479.15
- name: Setup .NET Core for Wyam
uses: actions/setup-dotnet@v1
with:
dotnet-version: 2.1.811
- name: Execute build
run: |
dotnet build --configuration Release /nologo
Expand All @@ -31,6 +25,11 @@ jobs:
with:
name: strinken
path: artifacts/*
- name: Setup .NET Core for Wyam
if: contains(github.event.head_commit.message, '[build-doc]') && github.ref == 'refs/heads/master'
uses: actions/setup-dotnet@v1
with:
dotnet-version: 2.1.811
- name: Generate doc
if: contains(github.event.head_commit.message, '[build-doc]') && github.ref == 'refs/heads/master'
run: |
Expand Down
4 changes: 2 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"sdk": {
"version": "5.0.100-rc.2.20479.15",
"version": "5.0.100",
"rollForward": "latestMajor",
"allowPrerelease": true
"allowPrerelease": false
}
}
4 changes: 2 additions & 2 deletions tests/Strinken.Public.Tests/Strinken.Public.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<TargetFramework>net5.0</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\src\Strinken\Strinken.csproj" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.0" />
<PackageReference Include="FluentAssertions" Version="5.10.3" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
Expand Down
2 changes: 1 addition & 1 deletion tests/Strinken.Tests/Strinken.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.0" />
<PackageReference Include="FluentAssertions" Version="5.10.3" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
Expand Down

0 comments on commit 8a9c005

Please sign in to comment.