我的问题是如何在一个地方为网站中的所有C#类定义预处理器指令全局。
答案 0 :(得分:0)
我能找到类似的问题: Preprocessor directives across different files in C#
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DefineConstants>TRACE;DEBUG;LINQ</DefineConstants>
</PropertyGroup>
</Project>
答案 1 :(得分:0)
我认为没有办法创建全局#define。
如果您需要所有源代码文件以了解#define,则必须为解决方案中的每个项目/程序集创建一个。
答案 2 :(得分:0)
这适用于我在网络配置中:
<system.codedom>
<compilers>
<compiler
language="c#;cs;csharp" extension=".cs"
compilerOptions="/d:custompreprocessor"
type="Microsoft.CSharp.CSharpCodeProvider,
System, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=b77a5c561934e089" />
</compilers>