Imagine you're developing an ASP.NET Core application on a machine without any internet access. Which tool, among the following, allows you to install NuGet packages from a local feed or folder?

  • Visual Studio
  • dotnet CLI
  • NuGet Package Manager Console
  • Visual Studio Code
The dotnet CLI (Command-Line Interface) allows you to install NuGet packages from a local feed or folder. It provides the dotnet add package command, which supports specifying package sources. This is particularly useful when working in an offline environment or when you want to use custom package sources.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *