C#: Declare preprocesor symbol (like DEBUG) globaly for whole project. - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T08:12:51Zhttp://stackoverflow.com/feeds/question/692595http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/692595/c-declare-preprocesor-symbol-like-debug-globaly-for-whole-project2C#: Declare preprocesor symbol (like DEBUG) globaly for whole project.Steve2009-03-28T10:49:35Z2009-07-16T11:52:17Z
<p>Hi, I would like to switch between NUnit and VS Tests like this:</p>
<pre><code>#if !NUNIT
using Microsoft.VisualStudio.TestTools.UnitTesting;
#else
using NUnit.Framework;
using TestClass = NUnit.Framework.TestFixtureAttribute;
using TestMethod = NUnit.Framework.TestAttribute;
using TestInitialize = NUnit.Framework.SetUpAttribute;
using TestCleanup = NUnit.Framework.TearDownAttribute;
using TestContext = System.String;
using DeploymentItem = NUnit.Framework.DescriptionAttribute;
#endif
</code></pre>
<p>My question is, how may I declare NUNIT preprocesor symbol at one place (App.config or so, would be great), to switch between NUnit and VSTests easily? Because when I use "#define NUNIT", it works only for the file, where it is written.</p>
http://stackoverflow.com/questions/692595/c-declare-preprocesor-symbol-like-debug-globaly-for-whole-project/692596#6925963Answer by Mehrdad Afshari for C#: Declare preprocesor symbol (like DEBUG) globaly for whole project.Mehrdad Afshari2009-03-28T10:50:13Z2009-03-28T10:50:13Z<p>Use the project properties dialog. You can define global symbols there:</p>
<blockquote>
<p>Right click on the project -> Properties -> Build tab -> Conditional compilation symbols</p>
</blockquote>
http://stackoverflow.com/questions/692595/c-declare-preprocesor-symbol-like-debug-globaly-for-whole-project/692600#6926004Answer by Marc Gravell for C#: Declare preprocesor symbol (like DEBUG) globaly for whole project.Marc Gravell2009-03-28T10:52:01Z2009-03-28T10:52:01Z<p>The only way to do this per project is via the project / build itself (project properties -> build -> conditional compilation symbols). You can define multiple "configurations" for a project (with different symbols defined), and use the one you want.</p>
<p>To add a new configuration, use the configuration manager (at the bottom of the debug/release drop-down) and create a new one based on on of the existing (debug/release/etc). Now in the project properties you can choose this option to set the different symbols for that config.</p>