Skip to content

Commit aafc019

Browse files
authored
Update TargetFrameworkDefaults.props
1 parent 99e4951 commit aafc019

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

src/Microsoft.DotNet.Arcade.Sdk/tools/TargetFrameworkDefaults.props

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,29 +11,27 @@
1111

1212
<PropertyGroup>
1313
<!-- The TFM of the major release of .NET that the Arcade SDK aligns with. -->
14-
<NetCurrent>net9.0</NetCurrent>
14+
<NetCurrent>net10.0</NetCurrent>
1515

1616
<!-- The previously released version of .NET.
1717
Undefined when NetMinimum and NetPrevious are identical. -->
18-
<NetPrevious />
18+
<NetPrevious>net9.0</NetPrevious>
1919

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. -->
2221
<NetMinimum>net8.0</NetMinimum>
2322

2423
<!-- The TFM of the latest version of .NET Framework. -->
2524
<NetFrameworkCurrent>net481</NetFrameworkCurrent>
2625

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. -->
2927
<NetFrameworkMinimum>net462</NetFrameworkMinimum>
3028
</PropertyGroup>
3129

3230
<PropertyGroup>
3331
<!-- The current version of .NET that tools (i.e. msbuild) target.
3432
MSBuild tasks and tools should use this version to target the latest TFM that is supported by tooling.
3533
Identical with NetCurrent when building from source. -->
36-
<NetToolCurrent Condition="'$(DotNetBuildSourceOnly)' != 'true'">net9.0</NetToolCurrent>
34+
<NetToolCurrent Condition="'$(DotNetBuildSourceOnly)' != 'true'">net10.0</NetToolCurrent>
3735
<NetToolCurrent Condition="'$(DotNetBuildSourceOnly)' == 'true'">$(NetCurrent)</NetToolCurrent>
3836

3937
<!-- Lowest version of .NET at the time of the release of NetCurrent that is supported by tooling.

0 commit comments

Comments
 (0)