Forrest logo
back to context overview

dotnet

List of commands for dotnet:

  • dotnet:tldr:246ce dotnet: Build and execute the .NET project in the current directory.
    $ dotnet run
    try on your machine
    explain this command
  • dotnet:tldr:41f08 dotnet: Initialize a new .NET project.
    $ dotnet new ${template_short_name}
    try on your machine
    explain this command
  • dotnet:tldr:494e7 dotnet: 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}
    try on your machine
    explain this command
back to context overview