Skip to content

Commit 48cdc71

Browse files
authored
Merge pull request #239 from xt0rted/drop-dotnet-31
Drop support for .net core 3.1
2 parents 1996b98 + d064c9f commit 48cdc71

File tree

7 files changed

+4
-73
lines changed

7 files changed

+4
-73
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,6 @@ jobs:
6868
source-url: https://nuget.pkg.github.com/xt0rted/index.json
6969
nuget_auth_token: ${{ secrets.GITHUB_TOKEN }}
7070

71-
- name: Set up .NET
72-
uses: xt0rted/[email protected]
73-
with:
74-
colored-output: false
75-
strip-comments-from-global-json: false
76-
dotnet-version: |
77-
3.1.x
78-
7971
- run: dotnet tool restore
8072

8173
- run: dotnet r build
@@ -137,14 +129,6 @@ jobs:
137129
source-url: https://nuget.pkg.github.com/xt0rted/index.json
138130
nuget_auth_token: ${{ secrets.GITHUB_TOKEN }}
139131

140-
- name: Set up .NET
141-
uses: xt0rted/[email protected]
142-
with:
143-
colored-output: false
144-
strip-comments-from-global-json: false
145-
dotnet-version: |
146-
3.1.x
147-
148132
- name: Download nupkg
149133
uses: actions/[email protected]
150134
with:

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 Core 3.1 which is no longer supported
7+
58
- Adjusted globbing so `:` acts like a path separator ([#131](https://github.com/xt0rted/dotnet-run-script/pull/131))
69
- `foo:*` will match `foo:bar` but not `foo:bar:baz`
710
- `foo:*:baz` will match `foo:bar:baz`

Directory.Build.props

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,13 @@
11
<Project>
22

33
<PropertyGroup>
4-
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
4+
<TargetFrameworks>net6.0</TargetFrameworks>
55
<LangVersion>latest</LangVersion>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
<IsPackable>false</IsPackable>
99
</PropertyGroup>
1010

11-
<PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp3.1' ">
12-
<EnableNETAnalyzers>true</EnableNETAnalyzers>
13-
<AnalysisLevel>latest</AnalysisLevel>
14-
</PropertyGroup>
15-
1611
<PropertyGroup>
1712
<VersionPrefix>0.6.0</VersionPrefix>
1813
<Authors>Brian Surowiec</Authors>

global.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
"prebuild": "dotnet r clean",
1111
"build": "dotnet build",
1212
"test": "dotnet test --no-build --logger \"trx;LogFilePrefix=tests\" --results-directory \"./coverage\"",
13-
"test:31": "dotnet r test -- --framework netcoreapp3.1",
1413
"test:6": "dotnet r test -- --framework net6.0",
1514

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

src/Polyfills/IsExternalInit.cs

Lines changed: 0 additions & 15 deletions
This file was deleted.

src/Polyfills/TaskExtensions.cs

Lines changed: 0 additions & 27 deletions
This file was deleted.

test/ModuleInitializerAttribute.cs

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)