I want to compile a C# project with NuGet dependencies without using Visual Studio (too heavy to download again). How could I do that?
With a normal Rust project I just need to run either cargo build
or cargo rustc
, for example, so I wonder how I could do it with a C#-NuGet-based solution (using paket
).
To add more context, paket
is downloading dependencies fine, but I don't know how to build my project yet. I've Mono installed, so I've nuget
already available here.