create dotnet.md

initial
This commit is contained in:
Michal 2020-04-15 18:07:02 +02:00 committed by Starbeamrainbowlabs
parent 785913b392
commit 4818ca04be

20
pages.pl/common/dotnet.md Normal file
View File

@ -0,0 +1,20 @@
# dotnet
> Cross platform .NET command line tools for .NET Core.
> More information: <https://docs.microsoft.com/dotnet/core/tools>.
- 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}}`