Skip to content

Commit

Permalink
Infrastructure Preparation 101
Browse files Browse the repository at this point in the history
  • Loading branch information
Taiizor committed Nov 2, 2022
1 parent 74d654d commit 2488e45
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ public App()
this.InitializeComponent();
}

protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
protected override MauiApp CreateMauiApp()
{
return MauiProgram.CreateMauiApp();
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ public App()
this.InitializeComponent();
}

protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
protected override MauiApp CreateMauiApp()
{
return MauiProgram.CreateMauiApp();
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ public App()
this.InitializeComponent();
}

protected override MauiApp CreateMauiApp() => Mutex.Check(MauiProgram.CreateMauiApp());
protected override MauiApp CreateMauiApp()
{
return Mutex.Check(MauiProgram.CreateMauiApp());
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ public App()
this.InitializeComponent();
}

protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
protected override MauiApp CreateMauiApp()
{
return MauiProgram.CreateMauiApp();
}
}
}

0 comments on commit 2488e45

Please sign in to comment.