mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-10 11:29:59 +03:00
424 B
424 B
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}}