NMaven and COM Interop
When Visual Studio compiles code that uses a COM object, it creates a wrapper dll. For example, compiling code in MyProject that uses Shell32.dll will result in both MyProject.dll and Interop.Shell32.dll being created.
This also needs to happen if there is a transitive dependency-- if OtherProject depends on MyProject, and MyProject uses Shell32.dll, then Interop.Shell32.dll also needs to be available when building OtherProject.
Questions
Should Interop.Shell32.dll be generated at build time every time?
Or should it be stored in the repository alongside MyProject?
References
Labels
