From 90fe67325ea6036929a4fa975fed35451a97f07e Mon Sep 17 00:00:00 2001 From: Galdin Raphael Date: Sun, 29 Oct 2017 18:56:14 +0530 Subject: [PATCH] dotnet: add page (#1581) --- pages/common/dotnet.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pages/common/dotnet.md diff --git a/pages/common/dotnet.md b/pages/common/dotnet.md new file mode 100644 index 0000000000..d2a8a3cbdd --- /dev/null +++ b/pages/common/dotnet.md @@ -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}}`