Skip to content

Commit

Permalink
Fix Template issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ghost1372 committed Feb 13, 2025
1 parent f887ee4 commit e1830b9
Show file tree
Hide file tree
Showing 7 changed files with 131 additions and 141 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ public static class WizardConfig
public static bool IsUnPackagedMode;
public static bool IsBlank;
public static bool HasPages;
public static bool IsMVVM;
public static bool UseHomeLandingPage;
public static bool UseSettingsPage;
public static bool UseGeneralSettingPage;
Expand Down
261 changes: 125 additions & 136 deletions VSIX/DevWinUI_Template/DevWinUI_Template/TemplateWizard/SharedWizard.cs

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="DevWinUI_Template.18eb89b1-bd1f-4e22-9196-6ea05b8ca61d" Version="11.2.3" Language="en-US" Publisher="Mahdi Hosseini" />
<Identity Id="DevWinUI_Template.18eb89b1-bd1f-4e22-9196-6ea05b8ca61d" Version="11.2.4" Language="en-US" Publisher="Mahdi Hosseini" />
<DisplayName>DevWinUI Templates for WinUI</DisplayName>
<Description xml:space="preserve">DevWinUI Project Template, help you quickly create a new WinUI 3 App with DevWinUI and MVVM Packages. We prepare your project with the following features: NavigationView, Custom TitleBar, HomeLandingPage and Settings Page (with Theme settings).
We also always use the latest version of WindowsAppSDK.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ protected override void OnLaunched(LaunchActivatedEventArgs args)
InitializeApp();
}

private $OnLaunchedAsyncKeyword$void InitializeApp()
private $AsyncKeyword$void InitializeApp()
{
$PackagedAppTaskId$$Windows11ContextMenuMVVMInitializer$$ConfigLogger$$UnhandeledException$
}
Expand Down
2 changes: 1 addition & 1 deletion VSIX/DevWinUI_Template/WinUIApp-MVVM/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ protected override void OnLaunched(LaunchActivatedEventArgs args)
InitializeApp();
}

private $OnLaunchedAsyncKeyword$void InitializeApp()
private $AsyncKeyword$void InitializeApp()
{
$Windows11ContextMenuMVVMInitializer$$ConfigLogger$$UnhandeledException$
}
Expand Down
2 changes: 1 addition & 1 deletion VSIX/DevWinUI_Template/WinUIApp-NavigationView/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ protected override void OnLaunched(LaunchActivatedEventArgs args)
InitializeApp();
}

private $OnLaunchedAsyncKeyword$void InitializeApp()
private $AsyncKeyword$void InitializeApp()
{
$PackagedAppTaskId$$Windows11ContextMenuInitializer$$ConfigLogger$$UnhandeledException$
}
Expand Down
2 changes: 1 addition & 1 deletion VSIX/DevWinUI_Template/WinUIApp/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ protected override void OnLaunched(LaunchActivatedEventArgs args)
InitializeApp();
}

private $OnLaunchedAsyncKeyword$void InitializeApp()
private $AsyncKeyword$void InitializeApp()
{
$Windows11ContextMenuInitializer$$ConfigLogger$$UnhandeledException$
}
Expand Down

0 comments on commit e1830b9

Please sign in to comment.