Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
32 lines
1.1 KiB
Diff
32 lines
1.1 KiB
Diff
diff --git a/example/example.csproj b/example/example.csproj
|
||
index fd6d566..ed76d15 100644
|
||
--- a/example/example.csproj
|
||
+++ b/example/example.csproj
|
||
@@ -1,6 +1,6 @@
|
||
<Project Sdk="Microsoft.NET.Sdk">
|
||
<PropertyGroup>
|
||
- <TargetFrameworks>net60;netstandard20</TargetFrameworks>
|
||
+ <TargetFrameworks>net8.0;netstandard2.0</TargetFrameworks>
|
||
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
|
||
</PropertyGroup>
|
||
<ItemGroup>
|
||
diff --git a/tests/test_common.py b/tests/test_common.py
|
||
index 8a9e36d..8370024 100644
|
||
--- a/tests/test_common.py
|
||
+++ b/tests/test_common.py
|
||
@@ -8,12 +8,12 @@ from pathlib import Path
|
||
|
||
@pytest.fixture(scope="session")
|
||
def example_netstandard(tmpdir_factory):
|
||
- return build_example(tmpdir_factory, "netstandard20")
|
||
+ return build_example(tmpdir_factory, "netstandard2.0")
|
||
|
||
|
||
@pytest.fixture(scope="session")
|
||
def example_netcore(tmpdir_factory):
|
||
- return build_example(tmpdir_factory, "net60")
|
||
+ return build_example(tmpdir_factory, "net8.0")
|
||
|
||
|
||
def build_example(tmpdir_factory, framework):
|