File tree Expand file tree Collapse file tree 3 files changed +416
-188
lines changed
test/Microsoft.Configuration.ConfigurationBuilders.Test Expand file tree Collapse file tree 3 files changed +416
-188
lines changed Original file line number Diff line number Diff line change
1
+ @ ECHO OFF
2
+
3
+ setlocal
4
+ set EnableNuGetPackageRestore = true
5
+
6
+ set MSBUILDEXE = msbuild.exe
7
+
8
+ set cfgOption = /p:Configuration=Release
9
+ REM set cfgOption=/p:Configuration=Debug
10
+ REM set cfgOption=/p:Configuration=Debug;Release
11
+ if not " %1 " == " " set cfgOption = /p:Configuration=
12
+
13
+ set logOptions = /v:n /flp:Summary;Verbosity=diag;LogFile=msbuild.log /flp1:warningsonly;logfile=msbuild.wrn /flp2:errorsonly;logfile=msbuild.err
14
+ REM set logOptions=/v:diag /flp:Summary;Verbosity=diag;LogFile=msbuild.log /flp1:warningsonly;logfile=msbuild.wrn /flp2:errorsonly;logfile=msbuild.err
15
+
16
+ %MSBUILDEXE% " %~dp0 \MicrosoftConfigurationBuilders.msbuild" /t:UnitTest %logOptions% /maxcpucount /nodeReuse:false %cfgOption% %*
17
+
18
+ endlocal
You can’t perform that action at this time.
0 commit comments