I have an application "app.exe" (a C++ application) present in Release folder. I wrote a C++/CLI DLL (clr.dll) to call a C# DLL (csharp.dll). Both of these DLL's are in etc folder.
Release
|-etc
|-clr.dll
|-csharp.dll
|-app.exe
app.exe is able to load clr.dll but clr.dll is not able to locate csharp.dll.
I used fuslogvw.exe to find out that the CLR is trying to search in Release folder.
Can someone help me out figure out a way to say CLR to search in my etc folder?