mirror of https://github.com/abpframework/abp.git
5 changed files with 36 additions and 1 deletions
@ -0,0 +1,16 @@ |
|||||
|
namespace Volo.Abp.Cli.ProjectBuilding.Templates.Wpf |
||||
|
{ |
||||
|
public class WpfTemplate : WpfTemplateBase |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// "wpf".
|
||||
|
/// </summary>
|
||||
|
public const string TemplateName = "wpf"; |
||||
|
|
||||
|
public WpfTemplate() |
||||
|
: base(TemplateName) |
||||
|
{ |
||||
|
DocumentUrl = CliConsts.DocsLink + "/en/abp/latest/Getting-Started-WPF-Application"; |
||||
|
} |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,13 @@ |
|||||
|
using JetBrains.Annotations; |
||||
|
using Volo.Abp.Cli.ProjectBuilding.Building; |
||||
|
|
||||
|
namespace Volo.Abp.Cli.ProjectBuilding.Templates.Wpf |
||||
|
{ |
||||
|
public class WpfTemplateBase: TemplateInfo |
||||
|
{ |
||||
|
protected WpfTemplateBase([NotNull] string name) : |
||||
|
base(name) |
||||
|
{ |
||||
|
} |
||||
|
} |
||||
|
} |
||||
Loading…
Reference in new issue