Change netcoreapp3.1 -> net5.0

This commit is contained in:
0xd4d 2020-11-11 00:04:50 +01:00
parent d2d84afc59
commit 0abcec127c
6 changed files with 8 additions and 8 deletions

View File

@ -17,7 +17,7 @@ on:
types: [released] types: [released]
env: env:
CI_REQ_DOTNET_SDK_VER: 3.1.100 CI_REQ_DOTNET_SDK_VER: 5.0.100
CI_NODE_MIN_VER: 10.0.0 CI_NODE_MIN_VER: 10.0.0
RUSTFLAGS: -D warnings RUSTFLAGS: -D warnings
@ -58,7 +58,7 @@ jobs:
if: github.ref == 'refs/heads/master' if: github.ref == 'refs/heads/master'
with: with:
name: coverage.info 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 if-no-files-found: error
- name: Upload coverage report - name: Upload coverage report
@ -68,7 +68,7 @@ jobs:
run: | run: |
curl https://codecov.io/bash -o codecov curl https://codecov.io/bash -o codecov
chmod +x 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: env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}} CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}

View File

@ -13,7 +13,7 @@ if [ "$OSTYPE" = "msys" ]; then
else else
is_windows=n is_windows=n
fi fi
net_tfm="netcoreapp3.1" net_tfm="net5.0"
net_std="netstandard2.0" net_std="netstandard2.0"
net_framework_tfm="net48" net_framework_tfm="net48"
xunit_version="2.4.1" xunit_version="2.4.1"

View File

@ -2,7 +2,7 @@
<PropertyGroup> <PropertyGroup>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework> <TargetFramework>net5.0</TargetFramework>
<IsPackable>false</IsPackable> <IsPackable>false</IsPackable>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
</PropertyGroup> </PropertyGroup>

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFrameworks>net48;netcoreapp3.1</TargetFrameworks> <TargetFrameworks>net48;net5.0</TargetFrameworks>
<IsPackable>false</IsPackable> <IsPackable>false</IsPackable>
</PropertyGroup> </PropertyGroup>

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework> <TargetFramework>net5.0</TargetFramework>
<IsPackable>false</IsPackable> <IsPackable>false</IsPackable>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
</PropertyGroup> </PropertyGroup>

View File

@ -2,7 +2,7 @@
<PropertyGroup> <PropertyGroup>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework> <TargetFramework>net5.0</TargetFramework>
<IsPackable>false</IsPackable> <IsPackable>false</IsPackable>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
</PropertyGroup> </PropertyGroup>