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

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 -v build -c Linux && dotnet publish --no-build -c Linux

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