1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-06 12:26:03 +02:00

update dotnet

updated
This commit is contained in:
Michal 2020-04-15 19:24:54 +02:00 committed by Starbeamrainbowlabs
parent 4f8a26b2ae
commit dd3a7a90c9

View file

@ -1,20 +1,20 @@
# dotnet
> Cross platform .NET command line tools for .NET Core.
> More information: <https://docs.microsoft.com/dotnet/core/tools>.
> Wieloplatformowe narzędzia wiersza polecenia .NET dla platformy .NET Core.
> Więcej informacji: <https://docs.microsoft.com/dotnet/core/tools>.
- Initialize a new .NET project:
- Zainicjuj nowy projekt .NET:
`dotnet new {{template_short_name}}`
- Restore nuget packages:
- Przywróć pakiety nuget:
`dotnet restore`
- Build and execute the .NET project in the current directory:
- Zbuduj i uruchom projekt .NET w bieżącym katalogu:
`dotnet run`
- Run a packaged dotnet application (only needs the runtime, the rest of the commands require the .NET Core SDK installed):
- Uruchom pakietową aplikację dotnet (wymaga tylko środowiska wykonawczego, pozostałe polecenia wymagają zainstalowanego zestawu .NET Core SDK):
`dotnet {{path/to/application.dll}}`