|
11 | 11 |
|
12 | 12 | <PropertyGroup> |
13 | 13 | <!-- The TFM of the major release of .NET that the Arcade SDK aligns with. --> |
14 | | - <NetCurrent>net9.0</NetCurrent> |
| 14 | + <NetCurrent>net10.0</NetCurrent> |
15 | 15 |
|
16 | 16 | <!-- The previously released version of .NET. |
17 | 17 | Undefined when NetMinimum and NetPrevious are identical. --> |
18 | | - <NetPrevious /> |
| 18 | + <NetPrevious>net9.0</NetPrevious> |
19 | 19 |
|
20 | | - <!-- Lowest supported version of .NET at the time of the release of NetCurrent. |
21 | | - E.g. net8.0 when NetCurrent is net9.0. --> |
| 20 | + <!-- Lowest supported version of .NET at the time of the release of NetCurrent. --> |
22 | 21 | <NetMinimum>net8.0</NetMinimum> |
23 | 22 |
|
24 | 23 | <!-- The TFM of the latest version of .NET Framework. --> |
25 | 24 | <NetFrameworkCurrent>net481</NetFrameworkCurrent> |
26 | 25 |
|
27 | | - <!-- Lowest supported version of .NET Framework the time of the release of NetCurrent. |
28 | | - E.g. if NetCurrent is net9.0, then NetFrameworkMinimum is net462. --> |
| 26 | + <!-- Lowest supported version of .NET Framework the time of the release of NetCurrent. --> |
29 | 27 | <NetFrameworkMinimum>net462</NetFrameworkMinimum> |
30 | 28 | </PropertyGroup> |
31 | 29 |
|
32 | 30 | <PropertyGroup> |
33 | 31 | <!-- The current version of .NET that tools (i.e. msbuild) target. |
34 | 32 | MSBuild tasks and tools should use this version to target the latest TFM that is supported by tooling. |
35 | 33 | Identical with NetCurrent when building from source. --> |
36 | | - <NetToolCurrent Condition="'$(DotNetBuildSourceOnly)' != 'true'">net9.0</NetToolCurrent> |
| 34 | + <NetToolCurrent Condition="'$(DotNetBuildSourceOnly)' != 'true'">net10.0</NetToolCurrent> |
37 | 35 | <NetToolCurrent Condition="'$(DotNetBuildSourceOnly)' == 'true'">$(NetCurrent)</NetToolCurrent> |
38 | 36 |
|
39 | 37 | <!-- Lowest version of .NET at the time of the release of NetCurrent that is supported by tooling. |
|
0 commit comments