mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-25 16:55:28 +00:00
Use mono to invoke Build.UpdateVersion.exe on non-Windows systems.
This commit is contained in:
parent
1b3e59d6e7
commit
2b9391f6c6
|
@ -40,6 +40,7 @@
|
|||
<Delete Files="..\..\Version.txt" />
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
<Exec Command="$(OutputPath)\Build.UpdateVersion.exe" />
|
||||
<Exec Command="$(OutputPath)\Build.UpdateVersion.exe" Condition="$(OS) == 'Windows_NT'" />
|
||||
<Exec Command="mono $(OutputPath)\Build.UpdateVersion.exe" Condition="$(OS) != 'Windows_NT'" />
|
||||
</Target>
|
||||
</Project>
|
Loading…
Reference in a new issue