Skip to content

Commit

Permalink
Drop .net 6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
xt0rted committed Apr 9, 2024
1 parent 087a24b commit 5c67e40
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Unreleased

- Dropped support for .NET 6
- Dropped support for .NET 7
- Added support for .NET 8

Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>

<PropertyGroup>
<TargetFrameworks>net8.0;net6.0</TargetFrameworks>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>preview</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
Expand Down
2 changes: 0 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
"clean:bin": "dotnet rimraf **/bin **/obj",
"build": "dotnet build",
"test": "dotnet test",
"test:6": "dotnet test --framework net6.0",
"test:8": "dotnet test --framework net8.0",
"pack": "dotnet pack --output ./artifacts",
"ci": "dotnet r build test pack",
"watch": "dotnet r [env:DOTNET_WATCH_RESTART_ON_RUDE_EDIT=true] watch:sample",
Expand Down
5 changes: 0 additions & 5 deletions sample/Sample.csproj
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFrameworks></TargetFrameworks>
</PropertyGroup>

<ItemGroup>
<Using Include="Microsoft.AspNetCore.Mvc" />
<Using Include="Microsoft.AspNetCore.Mvc.RazorPages" />
Expand Down

0 comments on commit 5c67e40

Please sign in to comment.