Skip to content

Commit a46728e

Browse files
Copilotsbomer
andcommitted
Use net10.0 as latest .NET version in examples
Co-authored-by: sbomer <[email protected]>
1 parent c12765b commit a46728e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/core/deploying/native-aot/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ When preparing libraries for AOT compatibility, if your library targets any fram
113113

114114
```xml
115115
<PropertyGroup>
116-
<TargetFrameworks>netstandard2.0;net8.0;net9.0</TargetFrameworks>
116+
<TargetFrameworks>netstandard2.0;net8.0;net10.0</TargetFrameworks>
117117
<IsAotCompatible Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net8.0'))">true</IsAotCompatible>
118118
</PropertyGroup>
119119
```

docs/core/deploying/trimming/prepare-libraries-for-trimming.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ When preparing libraries for trimming, if your library targets any framework ear
9696

9797
```xml
9898
<PropertyGroup>
99-
<TargetFrameworks>netstandard2.0;net6.0;net9.0</TargetFrameworks>
99+
<TargetFrameworks>netstandard2.0;net6.0;net10.0</TargetFrameworks>
100100
<IsTrimmable Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))">true</IsTrimmable>
101101
</PropertyGroup>
102102
```

0 commit comments

Comments
 (0)