Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build.cmd « ProjectTemplates « src - github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7e9ac072002ddaa6ceba5537e8d5dcd39a00d8b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
@ECHO OFF
SET RepoRoot=%~dp0..\..
CALL "%RepoRoot%\eng\build.cmd" -projects "%~dp0*\*.*proj" "/p:EnforceE2ETestPrerequisites=true" %*
IF %ERRORLEVEL% NEQ 0 (
   EXIT /b %ErrorLevel%
)

CALL "%RepoRoot%\eng\build.cmd" -projects "%RepoRoot%\src\submodules\spa-templates\src\*.*proj" "/p:EnforceE2ETestPrerequisites=true" -noBuildRepoTasks -noBuildNative %*
IF %ERRORLEVEL% NEQ 0 (
   EXIT /b %ErrorLevel%
)