我的问题是如何在一个地方为网站中的所有 C# 类定义 Preprocessor Directive Global。
问问题
767 次
3 回答
0
这在 webconfig 中对我有用:
<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>
于 2013-10-17T06:17:42.927 回答
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>
于 2013-10-16T07:30:08.387 回答
0
我认为没有办法创建全局#define。
如果您需要所有源代码文件都知道#define,则必须为解决方案中的每个项目/程序集创建一个。
于 2013-10-16T07:32:45.310 回答