File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6161 - name : Setup .NET
6262 uses : actions/setup-dotnet@v5
6363 with :
64- dotnet-version : ' 8.0.x '
64+ dotnet-version : ' 10.0 '
6565
6666 - name : Set up Python ${{ matrix.python }}
6767 uses : astral-sh/setup-uv@v7
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22 <PropertyGroup >
3- <TargetFrameworks >net8 .0;netstandard2.0</TargetFrameworks >
3+ <TargetFrameworks >net10 .0;netstandard2.0</TargetFrameworks >
44 <GenerateRuntimeConfigurationFiles >true</GenerateRuntimeConfigurationFiles >
55 </PropertyGroup >
66 <ItemGroup >
Original file line number Diff line number Diff line change 11import shutil
2- import pytest
3- from subprocess import check_call
42import sys
53from pathlib import Path
4+ from subprocess import check_call
5+
6+ import pytest
7+
8+ NETCORE_VERSION = "net10.0"
69
710
811@pytest .fixture (scope = "session" )
@@ -12,7 +15,7 @@ def example_netstandard(tmp_path_factory: pytest.TempPathFactory) -> Path:
1215
1316@pytest .fixture (scope = "session" )
1417def example_netcore (tmp_path_factory : pytest .TempPathFactory ) -> Path :
15- return build_example (tmp_path_factory , "net8.0" )
18+ return build_example (tmp_path_factory , NETCORE_VERSION )
1619
1720
1821def build_example (tmp_path_factory : pytest .TempPathFactory , framework : str ) -> Path :
@@ -108,7 +111,7 @@ def _do_test_coreclr_command_line(example_netcore: Path):
108111def test_coreclr_properties (example_netcore : Path ):
109112 run_in_subprocess (
110113 _do_test_coreclr_autogenerated_runtimeconfig ,
111- example_netstandard ,
114+ example_netcore ,
112115 properties = dict (APP_CONTEXT_BASE_DIRECTORY = str (example_netcore )),
113116 )
114117
You can’t perform that action at this time.
0 commit comments