Comprehensive documentation and guides for .NET Core development tools.
Explore the powerful tools available for .NET Core development, enabling you to build, debug, and deploy applications efficiently.
The .NET Command-Line Interface (CLI) is a cross-platform tool for developing .NET applications. It's used for creating, building, running, and publishing .NET projects.
dotnet new: Create new projects.dotnet build: Compile a project.dotnet run: Run a project.dotnet publish: Publish an application.dotnet restore: Restore dependencies.dotnet test: Run tests.Integrated Development Environments (IDEs) that provide rich editing, debugging, and extensibility features for .NET Core development.
The standard package manager for the .NET ecosystem. Use NuGet to consume and share libraries and packages.
Essential tools and techniques for diagnosing and fixing issues in your .NET Core applications.
Tools for analyzing and optimizing the performance of your .NET Core applications.