Skip to content

Commit

Permalink
Bumping to net8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Keboo committed Jan 15, 2024
1 parent f60953b commit 14667ab
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build-and-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ runs:
dotnet-version: |
3.1.x
6.x
7.x
8.x
env:
NUGET_AUTH_TOKEN: ${{ inputs.nuget_token }}

Expand Down
6 changes: 3 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<Project>

<PropertyGroup>
<LangVersion>11.0</LangVersion>
<LangVersion>12.0</LangVersion>
<Nullable>enable</Nullable>
<AnalysisLevel>preview</AnalysisLevel>
<ImplicitUsings>enable</ImplicitUsings>
<AllFrameworks Condition="'$(OS)' == 'Windows_NT'">net472;net48;netcoreapp3.1;net6.0</AllFrameworks>
<AllFrameworks Condition="'$(OS)' != 'Windows_NT'">netcoreapp3.1;net6.0</AllFrameworks>
<AllFrameworks Condition="'$(OS)' == 'Windows_NT'">net472;net48;netcoreapp3.1;net6.0;net8.0</AllFrameworks>
<AllFrameworks Condition="'$(OS)' != 'Windows_NT'">netcoreapp3.1;net6.0;net8.0</AllFrameworks>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion NosePlug.Tests/NosePlug.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="Moq.AutoMock" Version="3.5.0" />
<PackageReference Include="xunit" Version="2.6.5" />
<PackageReference Include="xunit" Version="2.6.6" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
Expand Down

0 comments on commit 14667ab

Please sign in to comment.