forked from untoldwind/KontrolSystem2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.ps1
39 lines (30 loc) · 1 KB
/
build.ps1
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
31
32
33
34
35
36
37
38
39
Push-Location -Path "Parsing"
msbuild -t:build -restore -Property:Configuration=Release
Pop-Location
Push-Location -Path "Parsing-Test"
msbuild -t:build -restore -Property:Configuration=Release
Pop-Location
Push-Location -Path "TO2"
msbuild -t:build -restore -Property:Configuration=Release
Pop-Location
Push-Location -Path "TO2-Test"
msbuild -t:build -restore -Property:Configuration=Release
Pop-Location
Push-Location -Path "KSP2Runtime"
msbuild -t:build -restore -Property:Configuration=Release
Pop-Location
Push-Location -Path "KSP2Runtime-Test"
msbuild -t:build -restore -Property:Configuration=Release
Pop-Location
Push-Location -Path "SpaceWarpMod"
msbuild -t:build -restore -Property:Configuration=Release
Pop-Location
Push-Location -Path "Parsing-Test"
msbuild -t:test -Property:Configuration=Release
Pop-Location
Push-Location -Path "TO2-Test"
msbuild -t:test -Property:Configuration=Release
Pop-Location
Push-Location -Path "KSP2Runtime-Test"
msbuild -t:test -Property:Configuration=Release
Pop-Location