mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-29 17:28:01 +01:00
12 lines
419 B
Bash
12 lines
419 B
Bash
#!/bin/bash
|
|
|
|
# Step 1: Build and pack Terminal.Gui
|
|
dotnet build ../Terminal.Gui/Terminal.Gui.csproj --configuration Release
|
|
dotnet pack ../Terminal.Gui/Terminal.Gui.csproj --configuration Release --output ../local_packages
|
|
|
|
# Step 2: Restore NativeAot with the new package
|
|
dotnet restore ./NativeAot.csproj --source ./local_packages
|
|
|
|
# Step 3: Build NativeAot
|
|
dotnet build ./NativeAot.csproj --configuration Release
|