Fix build on Linux, pass extra build script arguments to dotnet build
This commit is contained in:
parent
6922dd5041
commit
a420336e72
|
@ -37,6 +37,7 @@
|
|||
<LangVersion>8.0</LangVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<NoWin32Manifest>true</NoWin32Manifest>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
#!/bin/sh
|
||||
cd "$(dirname "$0")/.." && dotnet build BizHawk.sln
|
||||
cd "$(dirname "$0")/.." && nuget restore BizHawk.sln && CscToolExe="$(which csc)" dotnet build BizHawk.sln "$@"
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
#!/bin/sh
|
||||
cd "$(dirname "$0")/.." && dotnet build BizHawk.sln -c Release
|
||||
cd "$(dirname "$0")/.." && nuget restore BizHawk.sln && CscToolExe="$(which csc)" dotnet build BizHawk.sln -c Release "$@"
|
||||
|
|
Loading…
Reference in New Issue