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

dotnet: add page (#1581)

This commit is contained in:
Galdin Raphael 2017-10-29 18:56:14 +05:30 committed by Starbeamrainbowlabs
parent f0acd53e64
commit 90fe67325e

19
pages/common/dotnet.md Normal file
View file

@ -0,0 +1,19 @@
# dotnet
> Cross platform .NET command line tools for .NET Core.
- 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}}`