at master 1.1 kB view raw
1diff --git a/example/example.csproj b/example/example.csproj 2index fd6d566..ed76d15 100644 3--- a/example/example.csproj 4+++ b/example/example.csproj 5@@ -1,6 +1,6 @@ 6 <Project Sdk="Microsoft.NET.Sdk"> 7 <PropertyGroup> 8- <TargetFrameworks>net60;netstandard20</TargetFrameworks> 9+ <TargetFrameworks>net8.0;netstandard2.0</TargetFrameworks> 10 <GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles> 11 </PropertyGroup> 12 <ItemGroup> 13diff --git a/tests/test_common.py b/tests/test_common.py 14index 8a9e36d..8370024 100644 15--- a/tests/test_common.py 16+++ b/tests/test_common.py 17@@ -8,12 +8,12 @@ from pathlib import Path 18 19 @pytest.fixture(scope="session") 20 def example_netstandard(tmpdir_factory): 21- return build_example(tmpdir_factory, "netstandard20") 22+ return build_example(tmpdir_factory, "netstandard2.0") 23 24 25 @pytest.fixture(scope="session") 26 def example_netcore(tmpdir_factory): 27- return build_example(tmpdir_factory, "net60") 28+ return build_example(tmpdir_factory, "net8.0") 29 30 31 def build_example(tmpdir_factory, framework):