-
Notifications
You must be signed in to change notification settings - Fork 715
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #305 from vancem/AddBuildCmd.7-13-17
Tell people how to build without using Visual Studio IDE.
- Loading branch information
Showing
2 changed files
with
18 additions
and
2 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,15 @@ | ||
@cls | ||
@echo.************************************************************* | ||
@echo.This script simply calls msbuild to build PerfView.exe | ||
@echo.************************************************************* | ||
@echo. | ||
msbuild /p:Configuration=Release %* | ||
@if '%ERRORLEVEL%' == '0' ( | ||
echo. | ||
echo. | ||
echo.************************************************************* | ||
echo. The build was successful! | ||
echo.The output should be in src\bin\Release\PerfView.exe | ||
echo.This is the only file needed to deploy the program. | ||
echo.************************************************************* | ||
) |