13 строки
537 B
Batchfile
13 строки
537 B
Batchfile
@echo off
|
|
|
|
SET ProjectName=Msbuild.All
|
|
|
|
SET Configuration=Debug
|
|
|
|
SET Platform="Mixed Platforms"
|
|
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
|
|
|
|
PAUSE
|
|
|
|
|