From bcb1571a238f45e9924c0426bae399a43cf0544b Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sat, 16 Apr 2022 21:58:54 -0700 Subject: [PATCH] Use .NET Standard 2.0, add .NET 6.0 --- BurnOutSharp/BurnOutSharp.csproj | 4 ++-- Test/Test.csproj | 2 +- appveyor.yml | 5 ++++- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/BurnOutSharp/BurnOutSharp.csproj b/BurnOutSharp/BurnOutSharp.csproj index 0fbb3c81..76051b17 100644 --- a/BurnOutSharp/BurnOutSharp.csproj +++ b/BurnOutSharp/BurnOutSharp.csproj @@ -1,7 +1,7 @@  - net48;netcoreapp3.1;net5.0 + netstandard2.0 x86 BurnOutSharp BurnOutSharp @@ -23,7 +23,7 @@ - + runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/Test/Test.csproj b/Test/Test.csproj index c233b188..d74dfa29 100644 --- a/Test/Test.csproj +++ b/Test/Test.csproj @@ -1,7 +1,7 @@  - net48;netcoreapp3.1;net5.0 + net48;netcoreapp3.1;net5.0;net6.0 x86 false Exe diff --git a/appveyor.yml b/appveyor.yml index a4dfd7a1..86d770e0 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -39,6 +39,7 @@ after_build: - 7z a BurnOutSharp_net48.zip net48\* - 7z a BurnOutSharp_netcoreapp3.1.zip netcoreapp3.1\* - 7z a BurnOutSharp_net5.0.zip net5.0\* +- 7z a BurnOutSharp_net6.0.zip net6.0\* # success/failure tracking on_success: @@ -55,4 +56,6 @@ artifacts: - path: Test\bin\Debug\BurnOutSharp_netcoreapp3.1.zip name: BurnOutSharp (.NET Core 3.1) - path: Test\bin\Debug\BurnOutSharp_net5.0.zip - name: BurnOutSharp (.NET 5.0) \ No newline at end of file + name: BurnOutSharp (.NET 5.0) +- path: Test\bin\Debug\BurnOutSharp_net6.0.zip + name: BurnOutSharp (.NET 6.0) \ No newline at end of file