Scripts to build component projects used by Core
This commit is contained in:
parent
9367114cff
commit
0e065a6fa8
2 changed files with 15 additions and 0 deletions
8
buildAllComponents
Executable file
8
buildAllComponents
Executable file
|
|
@ -0,0 +1,8 @@
|
||||||
|
#!/bin/bash
|
||||||
|
dotnet build ./ObservatoryFramework/ObservatoryFramework.csproj "$@"
|
||||||
|
dotnet build ./ObservatoryExplorer/ObservatoryExplorer.csproj "$@"
|
||||||
|
dotnet build ./ObservatoryBotanist/ObservatoryBotanist.csproj "$@"
|
||||||
|
if [ -f ../NetCoreAudio/NetCoreAudio/NetCoreAudio.csproj ]; then
|
||||||
|
dotnet build ../NetCoreAudio/NetCoreAudio/NetCoreAudio.csproj -c Release
|
||||||
|
dotnet build ./ObservatoryHerald/ObservatoryHerald.csproj "$@"
|
||||||
|
fi
|
||||||
7
buildAllComponents.cmd
Normal file
7
buildAllComponents.cmd
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
dotnet build ./ObservatoryFramework/ObservatoryFramework.csproj %*
|
||||||
|
dotnet build ./ObservatoryExplorer/ObservatoryExplorer.csproj %*
|
||||||
|
dotnet build ./ObservatoryBotanist/ObservatoryBotanist.csproj %*
|
||||||
|
IF EXIST ..\NetCoreAudio\NetCoreAudio\NetCoreAudio.csproj (
|
||||||
|
dotnet build ../NetCoreAudio/NetCoreAudio/NetCoreAudio.csproj -c Release
|
||||||
|
dotnet build ./ObservatoryHerald/ObservatoryHerald.csproj %*
|
||||||
|
)
|
||||||
Loading…
Reference in a new issue