Skip to content

Commit

Permalink
Added support for .NET 6
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddesmet committed Nov 8, 2021
1 parent 36dd253 commit 4fb29e2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
- main
paths:
- 'src/**'
- 'Directory.Build.props'
- 'Directory.Build.targets'
pull_request:
branches:
- main
Expand Down Expand Up @@ -41,10 +43,10 @@ jobs:
- name: 'Install .NET SDK'
uses: actions/setup-dotnet@v1
if: ${{ false }}
- name: 'Install .NET 6 RC2 SDK'
- name: 'Install .NET 6 SDK'
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.100-rc.2.21505.57'
dotnet-version: '6.0.100'
- name: '.NET Info'
run: dotnet --info
- name: '.NET Restore'
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.targets
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup Condition="'$(TargetFramework)' == 'net6.0'">
<FrameworkVersion>6.0.0-rc.2.*</FrameworkVersion>
<FrameworkVersion>6.0.*</FrameworkVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(TargetFramework)' == 'net5.0'">
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "6.0.0-rc.2",
"version": "6.0.0",
"rollForward": "latestFeature"
}
}

0 comments on commit 4fb29e2

Please sign in to comment.