27 lines
1.2 KiB
Batchfile
27 lines
1.2 KiB
Batchfile
@ECHO OFF
|
|
SET RepoRoot=%~dp0..\..
|
|
|
|
ECHO Building Microsoft.AspNetCore.Runtime.SiteExtension
|
|
CALL %RepoRoot%\build.cmd -arch x64 -projects %~dp0Runtime\Microsoft.AspNetCore.Runtime.SiteExtension.pkgproj /bl:artifacts/log/SiteExtensions-Runtime-x64.binlog %*
|
|
CALL %RepoRoot%\build.cmd -arch x86 -projects %~dp0Runtime\Microsoft.AspNetCore.Runtime.SiteExtension.pkgproj /bl:artifacts/log/SiteExtensions-Runtime-x86.binlog %*
|
|
|
|
IF %ERRORLEVEL% NEQ 0 (
|
|
EXIT /b %ErrorLevel%
|
|
)
|
|
|
|
ECHO Building LoggingBranch
|
|
CALL %RepoRoot%\build.cmd -forceCoreMsbuild -arch x64 -projects %~dp0LoggingBranch\LB.csproj /bl:artifacts/log/SiteExtensions-LoggingBranch-x64.binlog %*
|
|
CALL %RepoRoot%\build.cmd -forceCoreMsbuild -arch x86 -projects %~dp0LoggingBranch\LB.csproj /bl:artifacts/log/SiteExtensions-LoggingBranch-x86.binlog %*
|
|
|
|
IF %ERRORLEVEL% NEQ 0 (
|
|
EXIT /b %ErrorLevel%
|
|
)
|
|
|
|
ECHO Building Microsoft.AspNetCore.AzureAppServices.SiteExtension
|
|
CALL %RepoRoot%\build.cmd -forceCoreMsbuild -projects %~dp0LoggingAggregate\src\Microsoft.AspNetCore.AzureAppServices.SiteExtension\Microsoft.AspNetCore.AzureAppServices.SiteExtension.csproj /bl:artifacts/log/SiteExtensions-LoggingAggregate.binlog %*
|
|
|
|
IF %ERRORLEVEL% NEQ 0 (
|
|
EXIT /b %ErrorLevel%
|
|
)
|
|
|
|
ECHO SiteExtensions successly built! |