forked from eXpandFramework/eXpand
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildProjects.cmd
33 lines (27 loc) · 1.75 KB
/
buildProjects.cmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
call clear.bat
call buildproject.cmd Xpand.ToolboxCreator ".\ToolBoxCreator\Xpand.ToolboxCreator.csproj"
echo FixReferences
%msbuild% /nologo /t:FixReferences /verbosity:quiet /p:Configuration=%configuration% Xpand.build
echo Building helper libraries...
%msbuild% /nologo /t:Rebuild /verbosity:quiet /p:Configuration=%configuration% ".\Xpand\Helpers.sln"
echo Building EasyTest libraries...
%msbuild% /nologo /t:Rebuild /verbosity:quiet /p:Configuration=%configuration% ".\Xpand.EasyTest\Xpand.EasyTest.sln"
echo Building core modules...
%msbuild% /nologo /t:Rebuild /verbosity:quiet /p:Configuration=%configuration% ".\Xpand\Xpand.ExpressApp\Xpand.ExpressApp.sln"
echo Building all other modules...
%msbuild% /nologo /t:Rebuild /verbosity:quiet /p:Configuration=%configuration% ".\Xpand\Xpand.ExpressApp.Modules\AllModules.sln"
echo Installing assemblies to GAC...
xcopy "_third_party_assemblies\GACInstaller.exe" ".\Xpand.DLL\*.*" /S /Y /H /I
call ".\Xpand.DLL\GACInstaller.exe"
echo Installing Toolbox Items...
call ".\Xpand.DLL\Xpand.ToolBoxCreator.exe"
echo Building Demo Projects...
%msbuild% /nologo /t:Rebuild /verbosity:quiet /p:Configuration=%configuration% ".\Demos\AllDemos.sln"
echo Building Module Tester Projects...
%msbuild% /nologo /t:Rebuild /verbosity:quiet /p:Configuration=%configuration% ".\Demos\Modules\AllModuleTesters.sln"
echo Building Xpand.ExpressApp.ModelEditor...
%msbuild% /nologo /t:Rebuild /verbosity:quiet /p:Configuration=%configuration% ".\Xpand.Addins\Xpand.ExpressApp.ModelEditor\Xpand.ExpressApp.ModelEditor.csproj"
echo Done Building Xpand.ExpressApp.ModelEditor
echo Building XpandAddIns...
%msbuild% /nologo /t:Rebuild /verbosity:quiet /p:Configuration=%configuration% ".\Xpand.Addins\XpandAddIns.csproj"
echo Done Building XpandAddIns