Skip to content

Commit

Permalink
Downgrade Maui version to avoid conflicts with $(MauiVersion)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamescaper committed Nov 5, 2024
1 parent 543bada commit 2e98dad
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions samples/ControlGallery/ControlGallery.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@

<ItemGroup>
<PackageReference Include="UraniumUI.Icons.FontAwesome" Version="2.10.2" />
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.92" />
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="8.0.92" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebView.Maui" Version="8.0.92" />
<PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />
<PackageReference Include="Microsoft.Maui.Controls.Compatibility" Version="$(MauiVersion)" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebView.Maui" Version="$(MauiVersion)" />
</ItemGroup>

<ItemGroup>
Expand Down
5 changes: 3 additions & 2 deletions src/BlazorBindings.Maui/BlazorBindings.Maui.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,11 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.92" />
<!-- Be careful with updating, as it might cause issues with the version avaible in workloads via $(MauiVersion) -->
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.82" />

<!-- Because of this bug https://github.com/dotnet/maui/issues/3536 we have to exlude targets assets -->
<PackageReference Include="Microsoft.AspNetCore.Components.WebView.Maui" Version="8.0.92" IncludeAssets="compile;runtime" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebView.Maui" Version="8.0.82" IncludeAssets="compile;runtime" />
</ItemGroup>

</Project>

0 comments on commit 2e98dad

Please sign in to comment.