mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
27 lines
644 B
Plaintext
27 lines
644 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# dotnet
|
|
|
|
> Cross platform .NET tools for .NET Core.
|
|
> Some subcommands such as `build` have their own usage documentation.
|
|
> More information: <https://learn.microsoft.com/dotnet/core/tools>.
|
|
|
|
- Initialize a new .NET project:
|
|
|
|
`dotnet new {{template_short_name}}`
|
|
|
|
- Restore NuGet packages:
|
|
|
|
`dotnet restore`
|
|
|
|
- Build and execute the .NET project in the current directory:
|
|
|
|
`dotnet run`
|
|
|
|
- Run a packaged dotnet application (only needs the runtime, the rest of the commands require the .NET Core SDK installed):
|
|
|
|
`dotnet {{path/to/application.dll}}`
|