Visual Studio - How to remove a reference in Release mode - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T19:50:26Zhttp://stackoverflow.com/feeds/question/260491http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/260491/visual-studio-how-to-remove-a-reference-in-release-mode7Visual Studio - How to remove a reference in Release modeSir Psycho2008-11-04T00:58:17Z2009-06-01T13:34:29Z
<p>Hi,</p>
<p>I'm developing a library for use in other apps and this library has lots of debugging and logging statements thanks to NLog.</p>
<p>Is it possible to exclude the reference to NLog.dll when I switch to release mode?</p>
<p>Cheers,</p>
http://stackoverflow.com/questions/260491/visual-studio-how-to-remove-a-reference-in-release-mode/260501#2605011Answer by Nelson Reis for Visual Studio - How to remove a reference in Release modeNelson Reis2008-11-04T01:03:17Z2008-11-04T01:03:17Z<p>I'm not sure if there is a way you can have a reference in debug mode and exclude that reference once you switch to release mode.</p>
<p>If there's any way you could do this, it would be great, but I don't know any.</p>
http://stackoverflow.com/questions/260491/visual-studio-how-to-remove-a-reference-in-release-mode/260522#2605220Answer by wonderchook for Visual Studio - How to remove a reference in Release modewonderchook2008-11-04T01:15:41Z2008-11-04T01:15:41Z<p>I can't think of a good way to do this. Unless maybe you wrote a stub reference for NLog.dll. Since you are using the reference in your code I don't see how you could just remove it in your release. </p>
<p>Probably too late now but in the future you could write a class to wrap NLog.dll and then just change it in one place so it wouldn't actually log in the release version. Or have some sort of flag.</p>
http://stackoverflow.com/questions/260491/visual-studio-how-to-remove-a-reference-in-release-mode/260530#2605300Answer by Lou Franco for Visual Studio - How to remove a reference in Release modeLou Franco2008-11-04T01:19:03Z2008-11-04T01:19:03Z<p>The only way I know is to take the reference out completely and call the assembly via reflection. Then, you should only log if the assembly loads.</p>
http://stackoverflow.com/questions/260491/visual-studio-how-to-remove-a-reference-in-release-mode/260548#260548-1Answer by Mash for Visual Studio - How to remove a reference in Release modeMash2008-11-04T01:27:57Z2008-11-04T01:27:57Z<p>There is no reason for removing a reference in case you are sure that no code will be in use from that DLL. In that case you can simply remove DLL.</p>
http://stackoverflow.com/questions/260491/visual-studio-how-to-remove-a-reference-in-release-mode/260566#2605660Answer by Scott P for Visual Studio - How to remove a reference in Release modeScott P2008-11-04T01:37:58Z2008-11-04T01:37:58Z<p>Why would you want to do that? </p>
<p>If you want to stop logging, you can programatically turn off the logging. The performance hit will be minimal. (I have had great success with NLog even when logging cross process.) </p>
<p>Otherwise, you need to wrap it as described above.</p>
<p>-Scott</p>
http://stackoverflow.com/questions/260491/visual-studio-how-to-remove-a-reference-in-release-mode/860601#8606018Answer by Sander Rijken for Visual Studio - How to remove a reference in Release modeSander Rijken2009-05-13T21:49:20Z2009-05-13T21:49:20Z<p>You can manually edit the csproj file, and do something like this:</p>
<pre><code><Reference Include="NLog" Condition="'$(Configuration)' == 'Debug'" />
</code></pre>
<p>This only makes it reference that assembly in Debug. I wouldn't recommend doing this often though, because this behavior isn't reflected in the references list in Visual Studio when you change the configuration. It does work when compiling though</p>