My .net project references a COM type library which I registered on my developer machine(I don't have control over this one). It looks like VS2010 generates interop assemblies on the fly - 2 different(they really differ) for Release and Debug. These are put in /obj/Release and /obj/Debug folders respectively. The thing is that the COM library is not and should not be registered on the build machine.
What are my options here? I don't feel like putting the /obj/Release(Debug) folders with the interop assemblies under source control. If I have to do that I would like to change the paths but I don't see any way to do that.
If I have to use tlbimp to generate the IA's myself how do I generate the 2(Debug and Release) versions?