Skip to content

Commit

Permalink
fix: duplicate condition attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
dansiegel authored and spouliot committed Mar 4, 2024
1 parent 1a7d032 commit 388c245
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Uno.Sdk/targets/Uno.SingleProject.Skia.targets
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<ItemGroup>
<EmbeddedResource Include="$(SkiaProjectFolder)Package.appxmanifest"
Condition="Exists('$(SkiaProjectFolder)Package.appxmanifest')"
Condition="@(EmbeddedResource)"
Exclude="@(EmbeddedResource)"
IsDefaultItem="true"
Link="$([MSBuild]::MakeRelative ('$(MSBuildProjectDirectory)', '%(Identity)'))" />
<Manifest Include="$(SkiaProjectFolder)$(ApplicationManifest)"
Condition="Exists('$(SkiaProjectFolder)$(ApplicationManifest)')"
Condition="@(EmbeddedResource)"
Exclude="@(Manifest)"
IsDefaultItem="true"
Link="$([MSBuild]::MakeRelative ('$(MSBuildProjectDirectory)', '%(Identity)'))" />
</ItemGroup>
Expand Down

0 comments on commit 388c245

Please sign in to comment.