1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-07 17:46:02 +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 # dotnet
> Cross platform .NET command line tools for .NET Core. > Wieloplatformowe narzędzia wiersza polecenia .NET dla platformy .NET Core.
> More information: <https://docs.microsoft.com/dotnet/core/tools>. > Więcej informacji: <https://docs.microsoft.com/dotnet/core/tools>.
- Initialize a new .NET project: - Zainicjuj nowy projekt .NET:
`dotnet new {{template_short_name}}` `dotnet new {{template_short_name}}`
- Restore nuget packages: - Przywróć pakiety nuget:
`dotnet restore` `dotnet restore`
- Build and execute the .NET project in the current directory: - Zbuduj i uruchom projekt .NET w bieżącym katalogu:
`dotnet run` `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}}` `dotnet {{path/to/application.dll}}`