Skip to content

Commit 9e01d0a

Browse files
committed
Update UWP projects to .NET 9 stable tools
1 parent 2cdc3d2 commit 9e01d0a

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

build/Directory.Build.props

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,6 @@
5959
since in order to use these APIs the caller already has to be in an unsafe context.
6060
-->
6161
<NoWarn>$(NoWarn);CS8500</NoWarn>
62-
63-
<!--
64-
We are using the UWP support for .NET 9, which is currently in preview. The warning from the .NET 9 SDK
65-
about this feature being in preview is unnecessary and it just produces a lot of noise, so we can disable it.
66-
-->
67-
<NoWarn>$(NoWarn);NETSDK1219</NoWarn>
6862
</PropertyGroup>
6963

7064
<!-- Centralized location for all generated artifacts -->

samples/ComputeSharp.SwapChain.D2D1.Uwp/ComputeSharp.SwapChain.D2D1.Uwp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>WinExe</OutputType>
4-
<TargetFramework>net8.0-windows10.0.22621.0</TargetFramework>
4+
<TargetFramework>net9.0-windows10.0.22621.0</TargetFramework>
55
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
66
<WindowsSdkPackageVersion>10.0.22621.57</WindowsSdkPackageVersion>
77
<UseUwp>true</UseUwp>

samples/ComputeSharp.SwapChain.Uwp/ComputeSharp.SwapChain.Uwp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>WinExe</OutputType>
4-
<TargetFramework>net8.0-windows10.0.26100.0</TargetFramework>
4+
<TargetFramework>net9.0-windows10.0.26100.0</TargetFramework>
55
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
66
<WindowsSdkPackageVersion>10.0.26100.57</WindowsSdkPackageVersion>
77
<UseUwp>true</UseUwp>

0 commit comments

Comments
 (0)