saunafs: 4.6.0 -> 4.7.0 (#379649)
[NixPkgs.git] / pkgs / development / python-modules / clr-loader / dotnet-8-upgrade.patch
blobd261dfc9e3cca7b662d1c095bcfdd9e4f1503353
1 diff --git a/example/example.csproj b/example/example.csproj
2 index 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>
13 diff --git a/tests/test_common.py b/tests/test_common.py
14 index 8a9e36d..8370024 100644
15 --- a/tests/test_common.py
16 +++ b/tests/test_common.py
17 @@ -8,12 +8,12 @@ from pathlib import Path
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")
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")
31 def build_example(tmpdir_factory, framework):