Skip to content

Commit a65dfb9

Browse files
committed
Fix Cs projects to require RS5
The Cs projects run down-level to RS5. They should not require Win11.
1 parent 9393b7f commit a65dfb9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Samples/Islands/DrawingIsland/DrawingCsTestApp/DrawingCsTestApp.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
<Platforms>x64;ARM64;x86</Platforms>
1111

1212
<!-- TODO: Why do we need to specify the explicit RIDs? -->
13-
<RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers>
13+
<RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers>
14+
<SupportedOSPlatformVersion>10.0.17763.0</SupportedOSPlatformVersion>
1415
</PropertyGroup>
1516

1617
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">

Samples/Islands/DrawingIsland/DrawingIslandCsProjection/DrawingIslandCsProjection.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
<!-- The CsWinRTGeneratedFilesDir property sets the output directory in which the projection source files are generated. This property is set to OutDir, defined in Directory.Build.props from the section above. -->
2121
<CsWinRTGeneratedFilesDir>$(OutDir)</CsWinRTGeneratedFilesDir>
22+
<SupportedOSPlatformVersion>10.0.17763.0</SupportedOSPlatformVersion>
2223

2324
</PropertyGroup>
2425

0 commit comments

Comments
 (0)