-
Notifications
You must be signed in to change notification settings - Fork 0
/
pack.bat
16 lines (16 loc) · 763 Bytes
/
pack.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@echo on
copy LICENSE ItemTemplate\license.txt
copy "EntityFramework.Reverse.POCO.Generator\*.ttinclude" ItemTemplate\ItemTemplates\
copy "EntityFramework.Reverse.POCO.Generator\Database.tt" ItemTemplate\ItemTemplates\
copy "ItemTemplate\*.png" ItemTemplate\ItemTemplates\
copy "ItemTemplate\*.ico" ItemTemplate\ItemTemplates\
copy "ItemTemplate\*.vstemplate" ItemTemplate\ItemTemplates\
cd ItemTemplate\ItemTemplates\
del *.zip /s
"C:\Program Files\7-Zip\7z.exe" a efrpoco.zip
del *.p* *.t* *.i* *.v*
copy *.zip "..\..\EntityFramework Reverse POCO Generator\ItemTemplates\"
copy *.zip "..\..\EntityFramework Reverse POCO Generator\ItemTemplates\CSharp\Data\1033\"
copy *.zip "..\..\EntityFramework Reverse POCO Generator\ItemTemplates\CSharp\1033\"
cd..\..
pause