|
1 | 1 | @ECHO OFF
|
2 | 2 | SET RepoRoot=%~dp0..\..
|
3 | 3 |
|
4 |
| -ECHO Building Microsoft.AspNetCore.Runtime.SiteExtension |
5 |
| -CALL %RepoRoot%\build.cmd -arch x64 -projects %~dp0Runtime\Microsoft.AspNetCore.Runtime.SiteExtension.pkgproj /bl:artifacts/log/SiteExtensions-Runtime-x64.binlog %* |
6 |
| -CALL %RepoRoot%\build.cmd -arch x86 -projects %~dp0Runtime\Microsoft.AspNetCore.Runtime.SiteExtension.pkgproj /bl:artifacts/log/SiteExtensions-Runtime-x86.binlog %* |
| 4 | +ECHO Building x64 Microsoft.AspNetCore.Runtime.SiteExtension |
| 5 | +CALL "%RepoRoot%\build.cmd" -arch x64 -projects "%~dp0Runtime\Microsoft.AspNetCore.Runtime.SiteExtension.pkgproj" ^ |
| 6 | + /bl:artifacts/log/SiteExtensions-Runtime-x86.binlog %* |
| 7 | +IF %ERRORLEVEL% NEQ 0 ( |
| 8 | + EXIT /b %ErrorLevel% |
| 9 | +) |
7 | 10 |
|
| 11 | +ECHO Building x86 Microsoft.AspNetCore.Runtime.SiteExtension |
| 12 | +CALL "%RepoRoot%\build.cmd" -arch x86 -projects "%~dp0Runtime\Microsoft.AspNetCore.Runtime.SiteExtension.pkgproj" ^ |
| 13 | + /bl:artifacts/log/SiteExtensions-Runtime-x86.binlog %* |
8 | 14 | IF %ERRORLEVEL% NEQ 0 (
|
9 | 15 | EXIT /b %ErrorLevel%
|
10 | 16 | )
|
11 | 17 |
|
12 |
| -ECHO Building LoggingBranch |
13 |
| -REM /p:DisableTransitiveFrameworkReferences=true is needed to prevent SDK from picking up transitive references to Microsoft.AspNetCore.App as framework references https://github.com/dotnet/sdk/pull/3221 |
14 |
| -CALL %RepoRoot%\build.cmd -forceCoreMsbuild -arch x64 -projects %~dp0LoggingBranch\LB.csproj /p:DisableTransitiveFrameworkReferences=true /bl:artifacts/log/SiteExtensions-LoggingBranch-x64.binlog %* |
15 |
| -CALL %RepoRoot%\build.cmd -forceCoreMsbuild -arch x86 -projects %~dp0LoggingBranch\LB.csproj /p:DisableTransitiveFrameworkReferences=true /bl:artifacts/log/SiteExtensions-LoggingBranch-x86.binlog %* |
| 18 | +ECHO Building x64 LoggingBranch |
| 19 | +REM /p:DisableTransitiveFrameworkReferences=true is needed to prevent SDK from picking up transitive references to |
| 20 | +REM Microsoft.AspNetCore.App as framework references https://github.com/dotnet/sdk/pull/3221 |
| 21 | +CALL "%RepoRoot%\build.cmd" -forceCoreMsbuild -arch x64 -projects "%~dp0LoggingBranch\LB.csproj" ^ |
| 22 | + /p:DisableTransitiveFrameworkReferences=true /bl:artifacts/log/SiteExtensions-LoggingBranch-x64.binlog %* |
| 23 | +IF %ERRORLEVEL% NEQ 0 ( |
| 24 | + EXIT /b %ErrorLevel% |
| 25 | +) |
16 | 26 |
|
| 27 | +ECHO Building x86 LoggingBranch |
| 28 | +CALL "%RepoRoot%\build.cmd" -forceCoreMsbuild -arch x86 -projects "%~dp0LoggingBranch\LB.csproj" ^ |
| 29 | + /p:DisableTransitiveFrameworkReferences=true /bl:artifacts/log/SiteExtensions-LoggingBranch-x86.binlog %* |
17 | 30 | IF %ERRORLEVEL% NEQ 0 (
|
18 | 31 | EXIT /b %ErrorLevel%
|
19 | 32 | )
|
20 | 33 |
|
21 | 34 | ECHO Building Microsoft.AspNetCore.AzureAppServices.SiteExtension
|
22 |
| -CALL %RepoRoot%\build.cmd -forceCoreMsbuild -projects %~dp0LoggingAggregate\src\Microsoft.AspNetCore.AzureAppServices.SiteExtension\Microsoft.AspNetCore.AzureAppServices.SiteExtension.csproj /bl:artifacts/log/SiteExtensions-LoggingAggregate.binlog %* |
23 |
| - |
| 35 | +CALL "%RepoRoot%\build.cmd" -forceCoreMsbuild -projects ^ |
| 36 | + "%~dp0LoggingAggregate\src\Microsoft.AspNetCore.AzureAppServices.SiteExtension\Microsoft.AspNetCore.AzureAppServices.SiteExtension.csproj" ^ |
| 37 | + /bl:artifacts/log/SiteExtensions-LoggingAggregate.binlog %* |
24 | 38 | IF %ERRORLEVEL% NEQ 0 (
|
25 | 39 | EXIT /b %ErrorLevel%
|
26 | 40 | )
|
|
0 commit comments