forked from LiteCoder/DoubanFM
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kai Yang
committed
Jun 12, 2015
1 parent
8c42d1d
commit c4b3940
Showing
3 changed files
with
33 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
@echo off | ||
if not defined VisualStudioVersion ( | ||
if defined VS140COMNTOOLS ( | ||
call "%VS140COMNTOOLS%\VsDevCmd.bat" | ||
goto :Build | ||
) | ||
|
||
if defined VS120COMNTOOLS ( | ||
call "%VS120COMNTOOLS%\VsDevCmd.bat" | ||
goto :Build | ||
) | ||
|
||
if defined VS110COMNTOOLS ( | ||
call "%VS110COMNTOOLS%\VsDevCmd.bat" | ||
goto :Build | ||
) | ||
|
||
if defined VS100COMNTOOLS ( | ||
call "%VS110COMNTOOLS%\VsDevCmd.bat" | ||
goto :Build | ||
) | ||
|
||
echo Error: build.cmd requires Visual Studio 2010, 2012, 2013 or 2015. | ||
exit /b 1 | ||
) | ||
|
||
:Build | ||
MSBuild DoubanFM.sln /t:Rebuild /p:Configuration=Release | ||
|
||
:Copy | ||
rd bin /s /q | ||
robocopy DoubanFM\bin\Release bin *.dll *.exe *.config version.dat /MIR /XD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.1.4.0 | ||
2.1.4.2 |