Skip to content

Commit d0e7406

Browse files
authored
Move NetVSCode to net10.0 (#12557)
The C# extension has moved to net10.0. See C# ext: dotnet/vscode-csharp#8839 and Roslyn: dotnet/roslyn#81508
2 parents e7408cb + 29e014b commit d0e7406

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Directory.Build.props

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,11 @@
4040
<!-- Embed source files that are not tracked by the source control manager in the PDB. -->
4141
<EmbedUntrackedSources>true</EmbedUntrackedSources>
4242

43-
<!-- Working around https://github.com/dotnet/sdk/issues/24747 -->
44-
<NoWarn>$(NoWarn);NU1505</NoWarn>
43+
<!--
44+
NU1505: Working around https://github.com/dotnet/sdk/issues/24747
45+
NETSDK1233: Working around https://github.com/dotnet/sdk/issues/51678 until we move our Windows CI to VS2026 images.
46+
-->
47+
<NoWarn>$(NoWarn);NU1505;NETSDK1233</NoWarn>
4548

4649
<!-- Working around https://github.com/microsoft/msbuild/pull/4764 -->
4750
<EmbeddedResourceUseDependentUponConvention>false</EmbeddedResourceUseDependentUponConvention>
@@ -51,7 +54,7 @@
5154

5255
<NetFxVS>net472</NetFxVS>
5356
<NetVS>net8.0</NetVS>
54-
<NetVSCode>net9.0</NetVSCode>
57+
<NetVSCode>net10.0</NetVSCode>
5558
<NetVSAndVSCode>$(NetVS);$(NetVSCode)</NetVSAndVSCode>
5659
</PropertyGroup>
5760

0 commit comments

Comments
 (0)