## BREAKING CHANGE **Publishing for linux will no longer include runtimes** ## Major Changes * Adds .NET 7 support. * Adds ARM64 support (experimental). * Changes linux support to be open-ended against anything .NET 7 supports. * Fixes native library resolutions. (Make sure to install `dev` versions of the libraries) * Updates README * Adds Ubuntu 22, CentOS 8/9 Stream to CI/CD. ## TODOs: * Update modernuo.com docs Closes #1173 Closes #1159
54 lines
1.8 KiB
Markdown
54 lines
1.8 KiB
Markdown
---
|
|
title: Installation
|
|
---
|
|
|
|
# Installation
|
|
|
|
=== "Windows"
|
|
### Prerequisites
|
|
1. Download and install the latest [.NET 7 SDK](https://dotnet.microsoft.com/download/dotnet/7.0)
|
|
1. Download and install from [here](https://git-scm.com/download/win)
|
|
|
|
!!! Tip
|
|
Use [Windows Terminal](https://learn.microsoft.com/en-us/windows/terminal/install) as your command prompt.
|
|
|
|
### Install ModernUO
|
|
1. Navigate to the folder where you want to install ModernUO.
|
|
1. Using _Windows Terminal_ run:
|
|
```bash
|
|
git clone https://github.com/modernuo/modernuo
|
|
cd modernuo
|
|
```
|
|
|
|
=== "OSX"
|
|
### Prerequisites
|
|
1. Download and install the latest [.NET 7 SDK](https://dotnet.microsoft.com/download/dotnet/7.0).
|
|
1. Using _terminal_, install [homebrew](https://brew.sh) and git:
|
|
```bash
|
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
|
|
brew install git
|
|
```
|
|
### Install ModernUO
|
|
1. Using _terminal_, navigate to the folder where you want to install ModernUO and run:
|
|
```bash
|
|
git clone https://github.com/modernuo/modernuo
|
|
cd modernuo
|
|
```
|
|
|
|
=== "Linux"
|
|
### Prerequisites
|
|
1. Download and install the latest [.NET 7 SDK](https://docs.microsoft.com/en-us/dotnet/core/install/linux).
|
|
1. Using _bash_, install git:
|
|
```bash
|
|
sudo apt update && sudo apt install git
|
|
```
|
|
|
|
!!! Note
|
|
The command to install git might be different for your flavor of linux. Consult your local Google search for answers.
|
|
|
|
### Install ModernUO
|
|
1. Using _bash_, navigate to the folder where you want to install ModernUO and run:
|
|
```bash
|
|
git clone https://github.com/modernuo/modernuo
|
|
cd modernuo
|
|
```
|