Skip to content

Commit

Permalink
Drop .NET Core 2.2 + 3.0 that reached end of life
Browse files Browse the repository at this point in the history
  • Loading branch information
atifaziz committed May 26, 2020
1 parent 2c47218 commit 54fb1e2
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
2 changes: 0 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ install:
- sh: curl -OsSL https://dot.net/v1/dotnet-install.sh
- sh: chmod +x dotnet-install.sh
- sh: ./dotnet-install.sh --version 3.1.300
- sh: ./dotnet-install.sh --version 3.0.3 --runtime dotnet
- sh: ./dotnet-install.sh --version 2.2.7 --runtime dotnet
- sh: ./dotnet-install.sh --version 2.1.18 --runtime dotnet
- sh: export PATH="$HOME/.dotnet:$PATH"
before_build:
Expand Down
2 changes: 1 addition & 1 deletion csmin.cmd
Original file line number Diff line number Diff line change
@@ -1 +1 @@
@dotnet run --no-launch-profile -f netcoreapp3.0 -p "%~dp0src\CSharpMinifierConsole" -- %*
@dotnet run --no-launch-profile -f netcoreapp3.1 -p "%~dp0src\CSharpMinifierConsole" -- %*
2 changes: 1 addition & 1 deletion csmin.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env sh
set -e
dotnet run --no-launch-profile -f netcoreapp3.0 -p "$(dirname "$0")/src/CSharpMinifierConsole" -- "$@"
dotnet run --no-launch-profile -f netcoreapp3.1 -p "$(dirname "$0")/src/CSharpMinifierConsole" -- "$@"
2 changes: 1 addition & 1 deletion src/CSharpMinifierConsole/CSharpMinifierConsole.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>netcoreapp3.1;netcoreapp3.0;netcoreapp2.2;netcoreapp2.1</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;netcoreapp2.1</TargetFrameworks>
<VersionPrefix>1.3.0</VersionPrefix>
<PackAsTool>true</PackAsTool>
<ToolCommandName>csmin</ToolCommandName>
Expand Down
2 changes: 1 addition & 1 deletion tests/CSharpMinifier.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;netcoreapp3.0;netcoreapp2.2;netcoreapp2.1</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;netcoreapp2.1</TargetFrameworks>
<LangVersion>8</LangVersion>
<IsPackable>false</IsPackable>
</PropertyGroup>
Expand Down

0 comments on commit 54fb1e2

Please sign in to comment.