-
-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from ghost1372/vs-extension
Vs extension
- Loading branch information
Showing
25 changed files
with
173 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Installers/VS2019/HandyControl_VS2019/source.extension.vsixmanifest
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> | ||
<ResourceDictionary.MergedDictionaries> | ||
<ResourceDictionary Source="/HandyControl;Component/Themes/Theme.xaml"/> | ||
</ResourceDictionary.MergedDictionaries> | ||
</ResourceDictionary> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using Prism.DryIoc; | ||
using Prism.Ioc; | ||
using System.Windows; | ||
using $safeprojectname$.Views; | ||
namespace $safeprojectname$ | ||
{ | ||
public class Bootstrapper : PrismBootstrapper | ||
{ | ||
protected override DependencyObject CreateShell() | ||
{ | ||
return Container.Resolve<MainWindow>(); | ||
} | ||
|
||
protected override void RegisterTypes(IContainerRegistry containerRegistry) | ||
{ | ||
|
||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> | ||
<ResourceDictionary.MergedDictionaries> | ||
<ResourceDictionary Source="/HandyControl;Component/Themes/Theme.xaml"/> | ||
</ResourceDictionary.MergedDictionaries> | ||
</ResourceDictionary> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,31 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<VSTemplate Version="3.0.0" Type="Project" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005" xmlns:sdk="http://schemas.microsoft.com/developer/vstemplate-sdkextension/2010"> | ||
<TemplateData> | ||
<Name>HandyControl WPF App(.NET Framework - Prism)</Name> | ||
<Description>Creates a HandyControl WPF App with Prism DryIoc MVVM Pattern(.NET Framework)</Description> | ||
<Name>HandyControl App (.NET Framework - MVVM)</Name> | ||
<Description>A project template for creating a HandyControl WPF App with .NET Framework and Prism MVVM Pattern</Description> | ||
<Icon>icon.ico</Icon> | ||
<ProjectType>CSharp</ProjectType> | ||
<RequiredFrameworkVersion>4.5</RequiredFrameworkVersion> | ||
<MaxFrameworkVersion>4.7.2</MaxFrameworkVersion> | ||
<TemplateID>feb74271-5261-4730-9af2-8fa899f989ce</TemplateID> | ||
<CreateNewFolder>true</CreateNewFolder> | ||
<DefaultName>HandyControlProject</DefaultName> | ||
<ProvideDefaultName>true</ProvideDefaultName> | ||
<LanguageTag>csharp</LanguageTag> | ||
<LanguageTag>XAML</LanguageTag> | ||
<PlatformTag>windows</PlatformTag> | ||
<ProjectTypeTag>desktop</ProjectTypeTag> | ||
<ProjectTypeTag>HandyControl</ProjectTypeTag> | ||
</TemplateData> | ||
<TemplateContent> | ||
<Project File="ProjectTemplate.csproj" ReplaceParameters="true"> | ||
<ProjectItem ReplaceParameters="true" TargetFileName="Properties\AssemblyInfo.cs">AssemblyInfo.cs</ProjectItem> | ||
<ProjectItem ReplaceParameters="true" TargetFileName="Properties\DesignTimeResources.xaml">DesignTimeResources.xaml</ProjectItem> | ||
<ProjectItem ReplaceParameters="true" TargetFileName="Views\MainWindow.xaml">MainWindow.xaml</ProjectItem> | ||
<ProjectItem ReplaceParameters="true" TargetFileName="Views\MainWindow.xaml.cs">MainWindow.xaml.cs</ProjectItem> | ||
<ProjectItem ReplaceParameters="true" TargetFileName="App.xaml">App.xaml</ProjectItem> | ||
<ProjectItem ReplaceParameters="true" TargetFileName="App.xaml.cs">App.xaml.cs</ProjectItem> | ||
<ProjectItem ReplaceParameters="true" TargetFileName="ViewModels\MainWindowViewModel.cs">MainWindowViewModel.cs</ProjectItem> | ||
<ProjectItem ReplaceParameters="true" TargetFileName="Bootstrapper.cs">Bootstrapper.cs</ProjectItem> | ||
</Project> | ||
</TemplateContent> | ||
</VSTemplate> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"> | ||
<ResourceDictionary.MergedDictionaries> | ||
<ResourceDictionary Source="/HandyControl;Component/Themes/Theme.xaml"/> | ||
</ResourceDictionary.MergedDictionaries> | ||
</ResourceDictionary> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.