1
0
Форкнуть 0

Changed the buildDebug to build that needs to be configured as either debug or release

This commit is contained in:
Karthik Tangirala 2015-07-08 09:07:15 -07:00
Родитель 91f4718c66
Коммит 5983ee5ede
2 изменённых файлов: 4 добавлений и 6 удалений

Просмотреть файл

@ -7,7 +7,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{2E6DDE9E-8C7
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{62AD20FD-640F-4F99-94EF-96A7581F1CF9}"
ProjectSection(SolutionItems) = preProject
buildDebug.cmd = buildDebug.cmd
build.cmd = build.cmd
Common.targets = Common.targets
dirs.proj = dirs.proj
global.json = global.json

Просмотреть файл

@ -1,16 +1,14 @@
@echo off
call "%VS140COMNTOOLS%\VsDevCmd.bat"
rem SET PATH=%PATH%;%systemdrive%\Windows\Microsoft.NET\Framework\v4.0.30319\;
SET ProjectName=Msbuild.All
rem SET TF_BUILD_BUILDNUMBER=Release
SET Configuration=Debug
REM Set the configuration to either release or debug based on the requirement.
SET Configuration=Release
SET Platform=Any CPU
SET NugetOrg_Feed=https://www.nuget.org/api/v2/
SET IsOfficialBuild=False
SET DefaultFeed=https://www.myget.org/F/aspnetvnext/api/v2/
msbuild dirs.proj /nologo /m:1 /fl /flp:logfile="%ProjectName%.%Platform%.log";v=d /flp1:logfile="%ProjectName%.%Platform%.wrn";warningsonly /flp2:logfile="%ProjectName%.%Platform%.err";errorsonly /p:Configuration=%Configuration% /p:Platform="%Platform%" /p:RunCodeAnalysis="False" /flp3:logfile="%ProjectName%.%Platform%.prf";performancesummary /flp4:logfile="%ProjectName%.%Platform%.exec.log";showcommandline /p:BuildSingleFilePackage=true /p:IsOfficialBuild=False
msbuild dirs.proj /nologo /m:1 /fl /flp:logfile="%ProjectName%.%Platform%.log";v=d /flp1:logfile="%ProjectName%.%Platform%.wrn";warningsonly /flp2:logfile="%ProjectName%.%Platform%.err";errorsonly /p:Configuration=%Configuration% /p:Platform="%Platform%" /p:RunCodeAnalysis="False" /flp3:logfile="%ProjectName%.%Platform%.prf";performancesummary /flp4:logfile="%ProjectName%.%Platform%.exec.log";showcommandline /p:BuildSingleFilePackage=true /p:IsOfficialBuild=%IsOfficialBuild%
pause