I want to be able to within a java application executed outside of visual studio, somehow issue a command to have Visual Studio attach to the applications process ( to debug a DLL ) the dll visual studio built is loaded by the java app.
The Java application has access to it's window title and the process ID.
It would make life much easier if I could within the java app do:
if(debuggingDll) {
"attachVisualStudioToMyProcess" // java has access to process ID name of window etc
}