コンパイラ参照でラップしたデバッグ ステートメントがいくつかあります。
#if DEBUG
Debug.WriteLine("Debug statement");
#endif
ただし、デバッグ構成では、DEBUG は false のように見え、リリース DEBUG では true のように見えます。
これは、単一のプロジェクトのように見えるものでのみ発生しています。他のプロジェクトからデバッグ ステートメントを正常に取得しています。
.csproj ファイルの関連部分は次のとおりです。
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
これは私にはまったく問題ないように見えますが、それでも私はこの奇妙な振る舞いをしています.