Skip to content

Commit

Permalink
Add .NET 6.0 TFM
Browse files Browse the repository at this point in the history
  • Loading branch information
augustoproiete committed Sep 19, 2021
1 parent b583d38 commit c513566
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ jobs:
uses: actions/[email protected]
with:
dotnet-version: "5.0.401"
- name: Setup net6.0
uses: actions/[email protected]
with:
dotnet-version: "6.0.100-rc.1.21458.32"
- name: Run dotnet --info
run: dotnet --info
- uses: actions/[email protected]
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": {
"allowPrerelease": false,
"allowPrerelease": true,
"version": "5.0.100",
"rollForward": "latestFeature"
"rollForward": "latestMajor"
}
}
2 changes: 1 addition & 1 deletion sample/SampleConsole/SampleConsole.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net5.0;netcoreapp3.1;net461</TargetFrameworks>
<TargetFrameworks>net6.0;net5.0;netcoreapp3.1;net461</TargetFrameworks>
<LangVersion>9.0</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/NaturalStringExtensions/NaturalStringExtensions.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net5.0;netstandard2.0;net461</TargetFrameworks>
<TargetFrameworks>net6.0;net5.0;netstandard2.0;net461</TargetFrameworks>

<AssemblyName>NaturalStringExtensions</AssemblyName>
<AssemblyVersion>0.0.1.0</AssemblyVersion>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net5.0;netcoreapp3.1;net461</TargetFrameworks>
<TargetFrameworks>net6.0;net5.0;netcoreapp3.1;net461</TargetFrameworks>
<LangVersion>9.0</LangVersion>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
Expand Down

0 comments on commit c513566

Please sign in to comment.