forked from mattleibow/Mono.Data.Sqlite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.bat
24 lines (16 loc) · 1.03 KB
/
build.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
echo off
set msbuild="C:\Program Files (x86)\MSBuild\14.0\bin\msbuild"
echo building all projects in the solution (Release)
echo ========================================================= > output_rel.log
echo ==================== PCL ================================ >> output_rel.log
echo building any cpu (pcl)
%msbuild% mono.data.sln /property:Configuration=Release;Platform="Any CPU" /verbosity:minimal > output_rel.log
echo ========================================================= >> output_rel.log
echo ==================== x86 ================================ >> output_rel.log
echo building x86 (emulators/silverlight)
%msbuild% mono.data.sln /property:Configuration=Release;Platform=x86 /verbosity:minimal >> output_rel.log
echo ========================================================= >> output_rel.log
echo ==================== ARM ================================ >> output_rel.log
echo building arm (wp/ws)
%msbuild% mono.data.sln /property:Configuration=Release;Platform=ARM /verbosity:minimal >> output_rel.log
echo build complete.