Skip to content
This repository has been archived by the owner on Oct 20, 2023. It is now read-only.

Update build-ubuntu-22.04.sh #1673

Closed
wants to merge 1 commit into from
Closed
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
5 changes: 5 additions & 0 deletions build-ubuntu-22.04.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

# dotnet 6 or higher is included in Ubuntu 22.04 and up

# add dotnet repo
wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb
rm packages-microsoft-prod.deb

# install dev-dependencies
sudo apt-get update; \
sudo apt-get -y install dotnet-sdk-6.0 git cmake build-essential libssl-dev pkg-config libboost-all-dev libsodium-dev libzmq5
Expand Down
Loading