•     Please make sure you check the Support FAQ and relevant Guides before you create a new thread in this section!

Hosting Server *Request for Linux* MBII Commandline Update to the MB2 Devs

Posts
36
Likes
24
Is there any chance since dotnet-sdk-6.0 is out of date to support a newer version when updating the client with dotnet MBII_CommandLine_Update_XPlatform.dll on Linux please. Dotnet 8.0 will do as older versions are no longer supported.

It will make life alot easier for those linux users if this could be updated.
 
Posts
2
Likes
5
Microsoft has an official script for installing old .net versions. Read docs. It's simple as installing via package manager
You just need to type these commands and import environment variables to bash.

Bash:
wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh

chmod +x ./dotnet-install.sh

./dotnet-install.sh --channel 6.0

nano ~/.bashrc

export DOTNET_ROOT=$HOME/.dotnet
export PATH=$PATH:$DOTNET_ROOT:$DOTNET_ROOT/tools
 
Top