forked from DavidS/MailSystem.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.bat
More file actions
22 lines (16 loc) · 726 Bytes
/
Build.bat
File metadata and controls
22 lines (16 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
echo Compile
%SystemRoot%\Microsoft.NET\Framework\v3.5\MSBuild.exe ActiveUp.Net.sln /p:Configuration=Retail
rem %SystemRoot%\Microsoft.NET\Framework\v3.5\MSBuild.exe ActiveUp.Net.Compact.sln /p:Configuration=Retail
%SystemRoot%\Microsoft.NET\Framework\v3.5\MSBuild.exe Build\Documentation.shfbproj /p:Configuration=Release
echo Prepare Release
IF EXIST Release GOTO NOWINDIR
MKDIR Release
:NOWINDIR
Del Release\*.* /Q /S
XCOPY "Class Library\ActiveUp.Net.Mail\bin\Retail\*.xml" Release\
XCOPY "Class Library\ActiveUp.Net.Mail\bin\Retail\*.dll" Release\
XCOPY Samples Release\Samples /s /i /y
XCOPY Build\Help\Documentation.chm Release\
XCOPY COPYRIGHT.txt Release\
XCOPY LICENSE.txt Release\
PAUSE