Background: I have a c++ class library with CLR support. It has been built for both release and debug. I added a reference to this class library from my C# windows application project by browsing to the class library's bin\debug folder and picking the class library's dll folder there.
Once my C# windows app was ready for release, the references still point to the debug folder of my class library - no matter which configuration is the active one for my windows app.
Question: How do I reference the debug class library from my debug windows app, and reference the release class library from my release windows app
.NET Development8
|