forked from Catel/Catel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscripts - Copy templates to projects.bat
More file actions
24 lines (16 loc) · 1.01 KB
/
scripts - Copy templates to projects.bat
File metadata and controls
24 lines (16 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
:: This script copies the item and project templates to the template projects so
:: they can be uploaded to the visual studio gallery
:: =========================================================
:: ITEM TEMPLATES
:: =========================================================
:: General
copy /Y templates\C#\ItemTemplates\Catel.ViewModel.zip "src\Catel.Templates\Catel.ItemTemplates.ViewModel\ItemTemplates\CSharp\General"
:: WPF
copy /Y templates\C#\ItemTemplates\Catel.WPF.DataWindow.zip "src\Catel.Templates\Catel.ItemTemplates.WPF.DataWindow\ItemTemplates\CSharp\WPF"
copy /Y templates\C#\ItemTemplates\Catel.WPF.UserControl.zip "src\Catel.Templates\Catel.ItemTemplates.WPF.UserControl\ItemTemplates\CSharp\WPF"
:: =========================================================
:: PROJECT TEMPLATES
:: =========================================================
:: WPF
copy /Y templates\C#\ProjectTemplates\Catel.WPF.Application.zip "src\Catel.Templates\Catel.ProjectTemplates.WPF.Application\ProjectTemplates\CSharp\Windows"
pause