Skip to content

Commit 407397a

Browse files
authored
Merge pull request #78 from xt0rted/net50
Drop .net 5 support
2 parents 1abc0cf + d3d26c9 commit 407397a

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## Unreleased
44

5+
> **Note**
6+
> This version drops support for .NET 5 which is no longer supported, but it will continue to work with .NET 5 SDKs.
7+
58
### Added
69

710
- Ability to run multiple scripts in a single call (e.g. `dotnet r build test pack`) ([#10](https://github.com/xt0rted/dotnet-run-script/pull/10))

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22

33
<PropertyGroup>
4-
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
4+
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
55
<LangVersion>latest</LangVersion>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>

global.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
"build": "dotnet build",
1212
"test": "dotnet test --no-build --logger \"trx;LogFilePrefix=tests\" --results-directory \"./coverage\"",
1313
"test:31": "dotnet r test -- --framework netcoreapp3.1",
14-
"test:5": "dotnet r test -- --framework net5.0",
1514
"test:6": "dotnet r test -- --framework net6.0",
1615

1716
"testbase": "dotnet test --no-build --logger \"trx;LogFilePrefix=tests\" --results-directory \"./coverage\"",

0 commit comments

Comments
 (0)