Skip to content

Commit

Permalink
Update VSIX
Browse files Browse the repository at this point in the history
  • Loading branch information
ghost1372 committed Mar 6, 2021
1 parent e4d669a commit 4ce8f6f
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("HandyControl_VS2019")]
[assembly: AssemblyCopyright("Copyright © HandyOrg 2018-2020")]
[assembly: AssemblyCopyright("Copyright © HandyOrg 2018-2021")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: AssemblyVersion("3.1.0.0")]
[assembly: AssemblyFileVersion("3.1.0.0")]
[assembly: AssemblyVersion("3.2.0.0")]
[assembly: AssemblyFileVersion("3.2.0.0")]
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" ?>
<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="16adb6c8-d74c-451c-9c7e-a93ef604d0b9" Version="3.1.0.0" Language="en-US" Publisher="Mahdi Hosseini" />
<Identity Id="16adb6c8-d74c-451c-9c7e-a93ef604d0b9" Version="3.2.0.0" Language="en-US" Publisher="Mahdi Hosseini" />
<DisplayName>HandyControls for VS2019</DisplayName>
<Description xml:space="preserve">Contains some simple and commonly used WPF controls based on HandyControl
This VSIX Project will help people initialize a HandyControls project.</Description>
Expand Down
5 changes: 3 additions & 2 deletions Installers/VS2019/WpfApp/App.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
using HandyControl.Themes;
using System.Windows;
using System.Windows.Media;
namespace $safeprojectname$
{
public partial class App
{
public partial class App : Application
{
internal void UpdateTheme(ApplicationTheme theme)
{
if (ThemeManager.Current.ApplicationTheme != theme)
Expand Down
2 changes: 1 addition & 1 deletion Installers/VS2019/WpfApp/ProjectTemplate.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="HandyControls" Version="3.1.0"/>
<PackageReference Include="HandyControls" Version="3.2.0"/>
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
Expand Down
2 changes: 1 addition & 1 deletion Installers/VS2019/WpfAppMVVMPrism/ProjectTemplate.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="HandyControls" Version="3.1.0"/>
<PackageReference Include="HandyControls" Version="3.2.0"/>
<PackageReference Include="Prism.DryIoc" Version="8.0.0.1909" />
</ItemGroup>
<ItemGroup>
Expand Down
5 changes: 3 additions & 2 deletions Installers/VS2019/WpfCoreApp/App.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
using HandyControl.Themes;
using System.Windows;
using System.Windows.Media;
namespace $safeprojectname$
{
public partial class App
{
public partial class App : Application
{
internal void UpdateTheme(ApplicationTheme theme)
{
if (ThemeManager.Current.ApplicationTheme != theme)
Expand Down
1 change: 1 addition & 0 deletions Installers/VS2019/WpfCoreApp/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public MainWindow()
{
InitializeComponent();
}

#region Change Theme
private void ButtonConfig_OnClick(object sender, RoutedEventArgs e) => PopupConfig.IsOpen = true;

Expand Down
2 changes: 1 addition & 1 deletion Installers/VS2019/WpfCoreApp/ProjectTemplate.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
<DefineConstants>TRACE;Core</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="HandyControls" Version="3.1.0" />
<PackageReference Include="HandyControls" Version="3.2.0" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion Installers/VS2019/WpfCoreAppPrism/ProjectTemplate.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<DefineConstants>TRACE;Core</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="HandyControls" Version="3.1.0" />
<PackageReference Include="HandyControls" Version="3.2.0" />
<PackageReference Include="Prism.DryIoc" Version="8.0.0.1909" />
</ItemGroup>
</Project>

0 comments on commit 4ce8f6f

Please sign in to comment.