mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 08:42:08 +02:00

Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com> Co-authored-by: Seth Falco <seth@falco.fun> Co-authored-by: Patrice Denis <patricedenis@users.noreply.github.com>
492 B
492 B
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}}