mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-06 12:06:00 +02:00
dotnet: add Italian translation.
This commit is contained in:
parent
5106e4f7f6
commit
3b3f97d283
1 changed files with 20 additions and 0 deletions
20
pages.it/common/dotnet.md
Normal file
20
pages.it/common/dotnet.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
# dotnet
|
||||
|
||||
> Strumenti .NET da linea di comando multipiattaforma per .NET Core.
|
||||
> Maggiori informazioni: <https://docs.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/a/applicazione.dll}}`
|
Loading…
Add table
Reference in a new issue