Skip to content

Commit

Permalink
chore: fix package conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
kazo0 committed Dec 13, 2024
1 parent e84db2c commit 910e07e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samples/MauiEmbedding/MauiEmbedding/MauiEmbedding.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@

</ItemGroup>

<ItemGroup Condition="$(_IsWinUI)">
<ItemGroup Condition="$(TargetFramework.Contains('windows10'))">
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" />
<PackageReference Include="Microsoft.WindowsAppSDK" />
</ItemGroup>

<ItemGroup Condition="$(TargetFramework.Contains('windows10'))">
<ItemGroup Condition="'$(IsAndroid)' == 'true'">
<PackageReference Include="Xamarin.AndroidX.Navigation.UI" />
<PackageReference Include="Xamarin.AndroidX.Navigation.Fragment" />
<PackageReference Include="Xamarin.AndroidX.Navigation.Runtime" />
Expand Down

0 comments on commit 910e07e

Please sign in to comment.