Skip to content

Takoooooo/avalonia-dotnet-templates

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

201 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Avalonia Templates for dotnet new

For more information about dotnet new templates see here.

Installing the templates

Run from a command line:

dotnet new -i Avalonia.Templates

The templates should now be available in dotnet:

Templates                   Short Name         Language        Tags
--------------------------------------------------------------------------
Avalonia .NET Core MVVM App                       avalonia.mvvm             [C#],F#           ui/xaml/avalonia/avaloniaui
Avalonia .NET Core App                            avalonia.app              [C#],F#           ui/xaml/avalonia/avaloniaui
Avalonia UserControl                              avalonia.usercontrol      [C#],F#           ui/xaml/avalonia/avaloniaui
Avalonia Window                                   avalonia.window           [C#],F#           ui/xaml/avalonia/avaloniaui
Avalonia Resource Dictionary                      avalonia.resource                           ui/xaml/avalonia/avaloniaui
Avalonia Styles                                   avalonia.styles                             ui/xaml/avalonia/avaloniaui

Note:

By default dotnet CLI would create a C# template,if you want to create F# template you will need to add -lang F# to the end of the command.

Creating a new MVVM Application

MVVM is the recommended pattern for creating Avalonia applications. The MVVM application template uses ReactiveUI to ease building applications with complex interactions.

To create a new MVVM application called MyApp in its own subdirectory, run:

dotnet new avalonia.mvvm -o MyApp

Creating a new Application

To create a new barebones application called MyApp in its own subdirectory, run:

dotnet new avalonia.app -o MyApp

Creating a new Window

To create a new Window called MyNewWindow, in the namespace MyApp run:

dotnet new avalonia.window -na MyApp -n MyNewWindow

Creating a new UserControl

To create a new UserControl called MyNewView, in the namespace MyApp run:

dotnet new avalonia.usercontrol -na MyApp -n MyNewView

Creating a new Styles list

To create a new Styles list called MyStyles, run:

dotnet new avalonia.styles -n MyStyles

Creating a new ResourceDictionary

To create a new ResourceDictionary called MyResources, run:

dotnet new avalonia.resource -n MyResources

About

Avalonia Templates for `dotnet new`

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • C# 44.1%
  • PowerShell 21.3%
  • F# 17.3%
  • CSS 9.7%
  • HTML 7.6%