Visual Studio - How to remove a reference in Release mode - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T19:50:26Z http://stackoverflow.com/feeds/question/260491 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/260491/visual-studio-how-to-remove-a-reference-in-release-mode 7 Visual Studio - How to remove a reference in Release mode Sir Psycho 2008-11-04T00:58:17Z 2009-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#260501 1 Answer by Nelson Reis for Visual Studio - How to remove a reference in Release mode Nelson Reis 2008-11-04T01:03:17Z 2008-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#260522 0 Answer by wonderchook for Visual Studio - How to remove a reference in Release mode wonderchook 2008-11-04T01:15:41Z 2008-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#260530 0 Answer by Lou Franco for Visual Studio - How to remove a reference in Release mode Lou Franco 2008-11-04T01:19:03Z 2008-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 -1 Answer by Mash for Visual Studio - How to remove a reference in Release mode Mash 2008-11-04T01:27:57Z 2008-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#260566 0 Answer by Scott P for Visual Studio - How to remove a reference in Release mode Scott P 2008-11-04T01:37:58Z 2008-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#860601 8 Answer by Sander Rijken for Visual Studio - How to remove a reference in Release mode Sander Rijken 2009-05-13T21:49:20Z 2009-05-13T21:49:20Z <p>You can manually edit the csproj file, and do something like this:</p> <pre><code>&lt;Reference Include="NLog" Condition="'$(Configuration)' == 'Debug'" /&gt; </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>