如何为ASP.net解决方案添加定义?

时间:2012-07-09 14:30:48

标签: asp.net visual-studio-2010 conditional-compilation

我可以通过项目属性 WinForms 项目添加define

enter image description here

如何在 ASP.net 解决方案中添加define


更新:这是Visual Studio 2010在ASP.net解决方案中工作时的样子:

enter image description here

2 个答案:

答案 0 :(得分:0)

Solution Explorer> WebApplicationProject(Web应用程序的名称)>属性>建立:

enter image description here

enter image description here

答案 1 :(得分:0)

您是否尝试过使用compilerOptionscompiler v元素的web.config属性?像这样:

<system.codedom>
    <compilers>
        <compiler language="c#;cs;csharp" 
            extension=".cs" 
            warningLevel="4" 
            type="Microsoft.CSharp.CSharpCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
            compilerOptions="/define:TRACE">
            <providerOption name="CompilerVersion" value="v3.5"/>
            <providerOption name="WarnAsError" value="false"/>
        </compiler>
....

我应该做的伎俩......