From 4818ca04be7e0bced02c6faa31949b4892066ba3 Mon Sep 17 00:00:00 2001 From: Michal Date: Wed, 15 Apr 2020 18:07:02 +0200 Subject: [PATCH] create dotnet.md initial --- pages.pl/common/dotnet.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages.pl/common/dotnet.md diff --git a/pages.pl/common/dotnet.md b/pages.pl/common/dotnet.md new file mode 100644 index 0000000000..d2f1bf5f4c --- /dev/null +++ b/pages.pl/common/dotnet.md @@ -0,0 +1,20 @@ +# dotnet + +> Cross platform .NET command line tools for .NET Core. +> More information: . + +- 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}}`