summarylogtreecommitdiffstats
path: root/build.sh
blob: de97396b21598975f8ccf07910f85d63fd33ecf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env bash

dotnet restore

pushd src/ResGen
dotnet run -c Linux
popd

pushd src/TypeCatalogParser
dotnet run -c Linux
popd

pushd src/TypeCatalogGen
dotnet run -c Linux  ../Microsoft.PowerShell.CoreCLR.AssemblyLoadContext/CorePsTypeCatalog.cs powershell.inc
popd

cd src/powershell-unix
dotnet build -c Linux && dotnet publish --no-build -c Linux

# vim:set ts=2 sw=2 et: