Skip to content

Commit 1e161b8

Browse files
committed
Define only one TargetFramework per platform
1 parent e8e7ed7 commit 1e161b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/WinDynamicDesktop.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
4-
<TargetFrameworks Condition="!$([MSBuild]::IsOSPlatform('Windows'))">net8.0</TargetFrameworks>
3+
<TargetFramework Condition="$([MSBuild]::IsOSPlatform('Windows'))">net8.0-windows10.0.19041.0</TargetFramework>
4+
<TargetFramework Condition="!$([MSBuild]::IsOSPlatform('Windows'))">net8.0</TargetFramework>
55
<RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers>
66
<Platforms>AnyCPU;x86;x64;ARM64</Platforms>
77
<OutputType>WinExe</OutputType>

0 commit comments

Comments
 (0)