This repository has been archived by the owner on Nov 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
/
build_all_platforms.bat
30 lines (25 loc) · 1.93 KB
/
build_all_platforms.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
@echo off
REM =========================================================
REM A naive script to build EchoRelay for various platforms
REM ==========================================================
REM Note: EchoRelay.App and EchoRelay.Cli inherently build EchoRelay.Core, as it is a dependency.
REM Build all projects for Windows. This will fail if the correct version of VS is not configured properly.
dotnet build --configuration Release
REM Build various versions of EchoRelay.App
dotnet build --configuration Release --self-contained false .\EchoRelay.App\EchoRelay.App.csproj --runtime win-x86
dotnet build --configuration Release --self-contained false .\EchoRelay.App\EchoRelay.App.csproj --runtime win-x64
dotnet build --configuration Release --self-contained false .\EchoRelay.App\EchoRelay.App.csproj --runtime win-arm64
REM Build various versions of EchoRelay.Cli
dotnet build --configuration Release --self-contained false .\EchoRelay.Cli\EchoRelay.Cli.csproj --runtime win-x86
dotnet build --configuration Release --self-contained false .\EchoRelay.Cli\EchoRelay.Cli.csproj --runtime win-x64
dotnet build --configuration Release --self-contained false .\EchoRelay.Cli\EchoRelay.Cli.csproj --runtime win-arm64
dotnet build --configuration Release --self-contained false .\EchoRelay.Cli\EchoRelay.Cli.csproj --runtime linux-arm
dotnet build --configuration Release --self-contained false .\EchoRelay.Cli\EchoRelay.Cli.csproj --runtime linux-arm64
dotnet build --configuration Release --self-contained false .\EchoRelay.Cli\EchoRelay.Cli.csproj --runtime linux-x64
dotnet build --configuration Release --self-contained false .\EchoRelay.Cli\EchoRelay.Cli.csproj --runtime osx-x64
dotnet build --configuration Release --self-contained false .\EchoRelay.Cli\EchoRelay.Cli.csproj --runtime osx-arm64
REM Output a message for the user.
echo Output has been saved to respective binary/build folders. Please check them.
REM Pause to show the user the output.
pause
@echo on