зеркало из https://github.com/dotnet/wpf.git
…
|
||
---|---|---|
.. | ||
content | ||
Microsoft.DotNet.Wpf.ProjectTemplates.ArchNeutral.csproj | ||
readme.MD | ||
useSharedDesignerContext.txt |
readme.MD
WPF Projects Templates
We provide the following templates:
- WPF Application (C#)
- WPF Application (VB)
- WPF Class library (C#)
- WPF Class library (VB)
- WPF Custom Control library (C#)
- WPF Custom Control library (VB)
- WPF User Control Library (C#)
- WPF User Control Library (VB)
Testing Templates
Before submitting a change to any of the templates please make sure to test them locally.
-
Install the required template with
dotnet
tool (e.g.WpfApplication-CSharp
).
In the command prompt of your choice run the following command:> dotnet new install <path to the repo>\wpf\packaging\Microsoft.Dotnet.Wpf.ProjectTemplates\content\WpfApplication-CSharp
-
To confirm that the template is correctly installed run the following command and look for your template:
> dotnet new uninstall
-
Create an app from your template:
> dotnet new wpf -n testapp1
-
Verify the app behaves as expected.
If necessary, tweak the template and create new apps. -
Once you are happy with the template, you can uninstall it to revert to the original by running the command given in
dotnet new uninstall
output; e.g.> dotnet new uninstall <path to the repo>\wpf\packaging\Microsoft.Dotnet.Wpf.ProjectTemplates\content\WpfApplication-CSharp