mirror of https://github.com/icedland/iced.git
Change netcoreapp3.1 -> net5.0
This commit is contained in:
parent
d2d84afc59
commit
0abcec127c
|
@ -17,7 +17,7 @@ on:
|
|||
types: [released]
|
||||
|
||||
env:
|
||||
CI_REQ_DOTNET_SDK_VER: 3.1.100
|
||||
CI_REQ_DOTNET_SDK_VER: 5.0.100
|
||||
CI_NODE_MIN_VER: 10.0.0
|
||||
RUSTFLAGS: -D warnings
|
||||
|
||||
|
@ -58,7 +58,7 @@ jobs:
|
|||
if: github.ref == 'refs/heads/master'
|
||||
with:
|
||||
name: coverage.info
|
||||
path: src/csharp/Intel/Iced.UnitTests/coverage.netcoreapp3.1.info
|
||||
path: src/csharp/Intel/Iced.UnitTests/coverage.net5.0.info
|
||||
if-no-files-found: error
|
||||
|
||||
- name: Upload coverage report
|
||||
|
@ -68,7 +68,7 @@ jobs:
|
|||
run: |
|
||||
curl https://codecov.io/bash -o codecov
|
||||
chmod +x codecov
|
||||
./codecov -f src/csharp/Intel/Iced.UnitTests/coverage.netcoreapp3.1.info
|
||||
./codecov -f src/csharp/Intel/Iced.UnitTests/coverage.net5.0.info
|
||||
env:
|
||||
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ if [ "$OSTYPE" = "msys" ]; then
|
|||
else
|
||||
is_windows=n
|
||||
fi
|
||||
net_tfm="netcoreapp3.1"
|
||||
net_tfm="net5.0"
|
||||
net_std="netstandard2.0"
|
||||
net_framework_tfm="net48"
|
||||
xunit_version="2.4.1"
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||
<TargetFramework>net5.0</TargetFramework>
|
||||
<IsPackable>false</IsPackable>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net48;netcoreapp3.1</TargetFrameworks>
|
||||
<TargetFrameworks>net48;net5.0</TargetFrameworks>
|
||||
<IsPackable>false</IsPackable>
|
||||
</PropertyGroup>
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||
<TargetFramework>net5.0</TargetFramework>
|
||||
<IsPackable>false</IsPackable>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||
<TargetFramework>net5.0</TargetFramework>
|
||||
<IsPackable>false</IsPackable>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
|
Loading…
Reference in New Issue