Skip to content

Commit

Permalink
Merge pull request #75 from AndreasReitberger/74-update-nugets
Browse files Browse the repository at this point in the history
Updated nugets
  • Loading branch information
AndreasReitberger authored Dec 9, 2024
2 parents 6646be3 + 48a5846 commit c0be5ba
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/MauiSettings.Example/App.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using AndreasReitberger.Shared.Core.Utilities;
using MauiSettings.Example.Models.Settings;
using MauiSettings.Example.Models.Settings;

namespace MauiSettings.Example
{
Expand All @@ -14,7 +13,11 @@ public App()

// Only Async methods do support encryption!
_ = Task.Run(async () => await SettingsApp.LoadSettingsAsync(Hash));
MainPage = new AppShell();
}

protected override Window CreateWindow(IActivationState? activationState)
{
return new Window(new AppShell());
}

protected override void OnSleep()
Expand Down
5 changes: 5 additions & 0 deletions src/MauiSettings.Example/MauiSettings.Example.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,9 @@
</MauiXaml>
</ItemGroup>

<ItemGroup>
<PackageReference Update="Microsoft.Maui.Controls" Version="9.0.12" />
<PackageReference Update="Microsoft.Maui.Controls.Compatibility" Version="9.0.12" />
</ItemGroup>

</Project>
5 changes: 5 additions & 0 deletions src/MauiSettings/MauiSettings.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,9 @@
<PackageReference Include="SharedNetCoreLibrary" Version="1.1.13" />
</ItemGroup>

<ItemGroup>
<PackageReference Update="Microsoft.Maui.Controls" Version="9.0.12" />
<PackageReference Update="Microsoft.Maui.Controls.Compatibility" Version="9.0.12" />
</ItemGroup>

</Project>

0 comments on commit c0be5ba

Please sign in to comment.