PackTerminalGui.ps1 406 B

123456789
  1. # Step 1: Build and pack Terminal.Gui
  2. dotnet build ../Terminal.Gui/Terminal.Gui.csproj --configuration Release
  3. dotnet pack ../Terminal.Gui/Terminal.Gui.csproj --configuration Release --output ../local_packages
  4. # Step 2: Restore NativeAot with the new package
  5. dotnet restore ./NativeAot.csproj --source ./local_packages
  6. # Step 3: Build NativeAot
  7. dotnet build ./NativeAot.csproj --configuration Release