From the course: Deploying ASP.NET Core Applications: From Fundamentals to Advanced Deployment Strategies

Unlock the full course today

Join today to access over 24,700 courses taught by industry experts.

Dependency management

Dependency management

- [Instructor] Dependency management is key to keeping your application stable and working well. This means taking care of the external libraries and packages your app depends on. One of the primary tools for managing these in the .NET ecosystem is NuGet. The NuGet packages are collections of prebuilt code that provide specific functionalities. And the NuGet package Manager helps you easily add, update, and manage these packages within your project. NuGet packages are essential tools for .NET developers because they do simplify the process of adding and managing external libraries and components in your projects. NuGet packages are managed through the NuGet Package Manager, which easily integrates with the development tools like Visual Studio and the Command Line Interface. This makes it straightforward to search for, install, and update packages directly from your development environment. One of the key features of NuGet packages is version control. Each package version is tracked…

Contents