mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 23:02:08 +02:00

- Replace "al" -> "del", "alla" -> "della", etc. in command paths - Replace all instances of "cartella" with "directory" - Update contributing-guides/translation-templates/common-arguments.md to reflect these changes Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com> Co-authored-by: Marco Bonelli <marco@mebeim.net> Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
21 lines
623 B
Markdown
21 lines
623 B
Markdown
# dotnet
|
|
|
|
> Strumenti .NET da linea di comando multipiattaforma per .NET Core.
|
|
> Alcuni comandi aggiuntivi, come `dotnet build`, hanno la propria documentazione.
|
|
> Maggiori informazioni: <https://learn.microsoft.com/dotnet/core/tools>.
|
|
|
|
- Inizializza un nuovo progetto .NET:
|
|
|
|
`dotnet new {{nome_abbreviato_template}}`
|
|
|
|
- Ripristina pacchetti nuget:
|
|
|
|
`dotnet restore`
|
|
|
|
- Costruisci ed esegui il progetto .NET nella directory corrente:
|
|
|
|
`dotnet run`
|
|
|
|
- Esegui una applicazione dotnet pacchettizzata (solo il runtime è necessario, il resto dei comandi richiedono .NET Core SDK):
|
|
|
|
`dotnet {{percorso/della/applicazione.dll}}`
|