ApplicationInsights-dotnet/buildRelease.cmd

14 строки
666 B
Batchfile
Исходник Обычный вид История

2015-10-13 02:04:50 +03:00
@echo off
2017-03-10 23:36:24 +03:00
IF NOT DEFINED MSBUILD CALL findMsBuild.cmd
2015-10-13 02:04:50 +03:00
2017-03-10 23:36:24 +03:00
SET ToolsVersion=15.0
SET ProjectName=Msbuild.All
2015-10-13 02:04:50 +03:00
SET Configuration=Release
SET Platform="Mixed Platforms"
2017-03-12 05:33:22 +03:00
nuget restore -NonInteractive
2017-03-10 23:36:24 +03:00
"%MSBUILD%" dirs.proj /nologo /m:1 /fl /toolsversion:%ToolsVersion% /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
2015-10-13 02:04:50 +03:00
2017-03-10 23:36:24 +03:00
PAUSE