webminerpool/server/build

17 lines
518 B
Plaintext
Raw Normal View History

2018-04-12 13:48:57 +00:00
#!/bin/bash
echo ""
echo "This is a simple helper to compile the C# server on Linux with msbuild."
echo "You should install the latest mono version (including msbuild) from"
echo "http://www.mono-project.com/download/stable/"
echo ""
echo "At least version 4.8.0 of mono is required. Your version is"
mono --version | grep version
echo ""
echo "Your msbuild version is"
msbuild /version | grep version
echo ""
read -p "Press enter to continue"
msbuild Server.sln /p:Configuration=Release_XMR /p:Platform="any CPU"