therefore, I am using Visual Studio 2005 and for my current project I am creating a C # add-in to handle aspect weaving for AspectC ++. It is simple enough to compile the aspect and source files and pass them to the aspect compiler, but it creates new (modified) source files. I am trying to imitate the standard AspectC ++ add-in: http://www.pure-systems.com/AspectC_Add-In.22+M54a708de802.0.html, so I would like to leave the source files for the project unchanged as I insert the files into the C ++ compiler. Assuming I can do this (I don’t know how to do this), how can I get the debugger to correctly specify the source source files? I know that I will need to disable the VS option so that the source code does not match the compiled version, but I do not understand how to link the two without directly modifying the source files. Any tips?
Oliver watkins
source
share