I have a managed .NET application. I am attempting to get all the process modules that are loaded by a current process so I can figure out what the Base address of these modules are. However when I use the System.Diagnostics.Process.Modules function, I am not getting any of my C# modules back. However, I am getting C++/CLI modules back which is weird because it's all the .NET framework.
The project that I am calling the System.Diagnostics.Process.Modules from references all of my dll's and uses them, however they're just not showing up in the module collection.
Any advice ?