Skip to content

Commit

Permalink
Fix Application reference in MAUI apps
Browse files Browse the repository at this point in the history
  • Loading branch information
achobanov committed Sep 23, 2023
1 parent 277f841 commit 7e7c0d5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/v4/Judge/EMS.Judge.UI/App.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace EMS.Judge.UI;

public partial class App : Application
public partial class App : Microsoft.Maui.Controls.Application
{
public App()
{
Expand Down
2 changes: 1 addition & 1 deletion src/v4/Witness/EMS.Witness.UI/App.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace EMS.Witness.UI;

public partial class App : Application
public partial class App : Microsoft.Maui.Controls.Application
{
public App()
{
Expand Down
8 changes: 8 additions & 0 deletions src/v4/Witness/EMS.Witness.UI/EMS.Witness.UI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,12 @@
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="7.0.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\Common\Common.Blazor\Common.Blazor.csproj" />
<ProjectReference Include="..\..\Common\Common\Common.csproj" />
<ProjectReference Include="..\..\EMS.Common\EMS.Application.csproj" />
<ProjectReference Include="..\..\EMS.Domain.Watcher\EMS.Domain.Watcher.csproj" />
<ProjectReference Include="..\..\EMS.Domain\EMS.Domain.csproj" />
</ItemGroup>

</Project>

0 comments on commit 7e7c0d5

Please sign in to comment.