Skip to content

Commit

Permalink
fix: Disable windows build on mac
Browse files Browse the repository at this point in the history
(cherry picked from commit e382c3e)
  • Loading branch information
nickrandolph authored and mergify[bot] committed Jul 26, 2023
1 parent 588f8f1 commit 841f06b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,13 @@
<!-- Forces Uno's XamlFileGenerator to write error when XAML is invalid-->
<ShouldWriteErrorOnInvalidXaml>True</ShouldWriteErrorOnInvalidXaml>
</PropertyGroup>
<PropertyGroup>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
</PropertyGroup>

<PropertyGroup>
<Build_Android>true</Build_Android>
<Build_iOS>true</Build_iOS>
<Build_MacOS>true</Build_MacOS>
<Build_Windows>true</Build_Windows>
<Build_Windows Condition="$([MSBuild]::IsOSPlatform('windows'))">true</Build_Windows>
<Build_Windows Condition="!$([MSBuild]::IsOSPlatform('windows'))">false</Build_Windows>
</PropertyGroup>

<Import Project="DebugPlatforms.props" Condition="exists('DebugPlatforms.props')" />
Expand Down

0 comments on commit 841f06b

Please sign in to comment.