Skip to content

Show correct dependencies for .NET builds #40

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions source/advanced/building_from_sources.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,25 @@ The following instructions have been tested on Ubuntu 20.04, however there shoul

:::{tab} Mono
First, install the `mono-complete` package as per the installation instructions for various Linux distributions which can be found on [the Mono project website](https://www.mono-project.com/download/stable/#download-lin).

To install the remaining dependencies, use:

sudo apt update
sudo apt install git automake cmake autoconf libtool g++ coreutils policykit-1 \
libgtk2.0-dev uml-utilities gtk-sharp2 python3 python3-pip

:::

:::{tab} .NET
First, install the `.NET SDK` package as per the installation instructions, which can be found on [the official .NET site](https://dotnet.microsoft.com/en-us/download/dotnet/6.0). This can as well be installed with the default package manager, using: `sudo apt install dotnet-sdk-6.0`.
:::

To install the remaining dependencies, use:

sudo apt update
sudo apt install git automake cmake autoconf libtool g++ coreutils policykit-1 \
libgtk2.0-dev uml-utilities gtk-sharp2 python3 python3-pip
uml-utilities gtk-sharp3 python3 python3-pip

:::

::::

Expand Down