July 2017
Beginner
466 pages
9h 37m
English
To run a .NET Core application, you can use the dotnet run command from the console window. As it relies on the dotnet build command, when you specify a project to run, it automatically builds the project and then launches the application.
To run an app in the project context, enter the following command:
dotnet run --project <ProjectPath>
If you already have a portable application DLL, you can run it directly by executing the DLL by the dotnet driver without specifying any command. For example, the following command runs the already available DLL built against .NET Core 1.0:
dotnet "Demo App\bin\Debug\netcoreapp1.0\Demo App.dll"
Please refer the following screenshot:
Read now
Unlock full access