Running a .NET Core Project Using the Command Line

To use the command line to run a project for a COBOL application on .NET Core you use the dotnet run command as follows:

dotnet run [project-name.cblproj]
Note: You can omit the name of the project file if there is only one project file in the current directory.

The dotnet run command includes more options than those shown above. For more information on the dotnet run command see Microsoft: .NET fundamentals - dotnet run.