Skip to content

Nuget related

Hyunseok edited this page Mar 25, 2024 · 1 revision

nuget for Ubuntu 22.04

sudo apt install nuget
sudo nuget update -self

Edit config file or check the configuration

vi ~/.config/Nuget/Nuget.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <packageSources>
    <add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
    <add key="dotnet-core" value="https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json" />
  </packageSources>
</configuration>

install nuget package for examples

nuget install AssimpNet -version 5.0.0-beta1
nuget install protobuf-net -version 3.2.30

Build guide is only for developer.

Clone this wiki locally