Adds specific linux operating system support (#169)

This commit is contained in:
Kamron Batman 2020-07-02 17:35:46 -07:00 committed by GitHub
parent 3cc00ce994
commit 997691fbb7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 12801 additions and 86 deletions

View file

@ -21,27 +21,27 @@ ModernUO [![Discord](https://img.shields.io/discord/458277173208547350?logo=disc
#### Requirements
- [.NET Core 3.1.4 SDK](https://dotnet.microsoft.com/download/dotnet-core/3.1)
#### Publishing
OSX/Linux
- `./Tools/publish.sh [linux|osx|win] [Release|Debug (default: Release)]`
Windows
- `Tools\publish.cmd [linux|osx|win] [Release|Debug (default: Release)]`
#### Publishing Builds
- `./Tools/publish.cmd [os] [Release|Debug (default: Release)]`
- Supported `os`:
- `win` for Windows 8/10/2019
- `osx` for MacOS
- `ubuntu.16.04`, `ubuntu.18.04` for Ubuntu (20.04 will be supported in the next .NET Core Release)
- `debian.9`, `debian.10` for Debian
- `centos.7`, `centos.8` for CentOS
- If blank, will use host operating system
## Deploying / Running Server
- Follow the [publish](https://github.com/modernuo/ModernUO#publishing-a-build) instructions
- Copy `Distribution` directory to production server
- Copy `Distribution` directory to the production server
#### Requirements
- [.NET Core 3.1 Runtime](https://dotnet.microsoft.com/download/dotnet-core/3.1)
#### Windows
- Run `ModernUO.exe` or `dotnet ModernUO.dll`
#### Running
- `dotnet ModernUO.dll`
#### OSX and Linux
- Run `./ModernUO` or `dotnet ./ModernUO.dll`
#### Cleaning Distribution
#### Cleaning
- `dotnet clean`
## Thanks