Debugging a Process.Start () application

I have a C # class library (which is an AutoCAD.net application) and a console application.

Somewhere in the class library, the console application starts using Process.Start ()

I have both of these projects with the same solution, I installed the class library as a startup project (to run AutoCAD). I can debug a class library, but not a console application.

How to debug a console application based on this configuration?

+4
source share
1 answer

In Visual Studio, you need to use the Debug-> Attach To Process parameter.

+1
source

All Articles