Installing a nuget reference in fire

just want to add ssh.net to fire

trying to do with cmd line dot net but dont recognise the solution

dotnet add package SSH.NET --version 2020.0.1

any idea?

Elements/EBuild doesn’t use the MSBuild and dotnet.exe toolchain. You can add NuGet references from the IDEs “Manage References:” sheet, or manually in the project file, see Package References for more details.

You’d want something like <NuGetReference Include="SSH.NET:2020.0.1"/> in your project file.

1 Like