Skip to content

Commit

Permalink
fix: Desktop target should not launch console
Browse files Browse the repository at this point in the history
  • Loading branch information
dansiegel committed May 29, 2024
1 parent 3d6a698 commit 3d092ed
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Uno.Sdk/targets/Uno.SingleProject.Desktop.targets
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
<Version Condition=" $([System.Version]::TryParse ('$(ApplicationDisplayVersion)', $([System.Version]::Parse('1.0')))) ">$(ApplicationDisplayVersion)</Version>
<ApplicationDisplayVersion Condition=" '$(ApplicationDisplayVersion)' == '' ">$(Version)</ApplicationDisplayVersion>
</PropertyGroup>

<PropertyGroup Condition=" '$(IsUnoHead)' == 'true' ">
<OutputType>WinExe</OutputType>
</PropertyGroup>

<ItemGroup>
<EmbeddedResource Include="$(DesktopProjectFolder)Package.appxmanifest"
Condition="Exists('$(DesktopProjectFolder)Package.appxmanifest')"
Expand Down

0 comments on commit 3d092ed

Please sign in to comment.