I am having the same issue, using EA Profressional Edition 7.0.818.
I imported the C# source code, recursively, for the project I want to document.
Note: There are dependencies in this project, other projects, that I did not import but since I'm not debugging into them I'm not sure if that's an issue or not.
The build script for my class model is as follows:directory: v: (this is a mapped drive)
my build path/command is:
v:\buildit.bat v:\app_root\app.sln
the batch file calls vcvars32.bat and runs msbuild against a .sln file to build the solution.
The build step works fine.
v:\buildit.bat v:\Acme\Code\SchwabPT.PortfolioCenter.ManagementConsole.sln
However, here's the output from the debug step:17/01/2008 13::24 Default Directory is v:
17/01/2008 13::24 v:\app_path\app.exe targets .NET version v2.0.50727
17/01/2008 13::24 Debugger CLR runtime version is v2.0.50727
17/01/2008 13::24 Process created \Device\HarddiskVolume2\app_path\app.exe running CLR version v2.0.50727
17/01/2008 13::24 Debug process in domain DefaultDomain
17/01/2008 13::24 Debug process in domain app.exe
17/01/2008 13::24 Debug process in domain Domain 2
17/01/2008 13::24 Debug process in domain SnapIn Spyder AppDomain
17/01/2008 13::24 Inspecting 'v:\...\some.dll' for snapins...
17/01/2008 13::24 Inspecting 'v:\...\some.dll' for snapins...
etc (there are several of these lines, one for each dll in the application)
17/01/2008 13::24 Warning, all breakpoints failed to bind, check binaries built with debug information and source files synchronized with Model
17/01/2008 13::24 debug ends for v:\app_path\app.exe
I get this error after viewing source code in Ea, setting a break point and hitting F6 to do a debug run.
Note: if I put a breakpoint at the beginning of my Main() method then the debug will work and stop on that breakpoint. However, putting it farther in the app does not work. I tried putting the breakpoint in Main() and then, after the debugger stopped on the breakpoint, adding my second one where I want to start recording. As soon as I hit F6 to continue, my second breakpoint disappears and I get the debug ended message in my output window.
I'm obviously missing something. Why are my breakpoints not binding?
Thanks in advance for any help,
Greg.