Skip to content

Commit 0022e13

Browse files
committed
Fixed TRACE compilation symbol (DNET-752).
1 parent 92292a3 commit 0022e13

3 files changed

Lines changed: 8 additions & 4 deletions

File tree

Provider/src/FirebirdSql.Data.FirebirdClient/FirebirdSql.Data.FirebirdClient_NET40.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,13 @@
1616
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
1717
<OutputPath>bin\Release\NET40</OutputPath>
1818
<BaseIntermediateOutputPath>obj\NET40</BaseIntermediateOutputPath>
19+
<DefineConstants>TRACE</DefineConstants>
1920
</PropertyGroup>
2021
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
2122
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
2223
<OutputPath>bin\Debug\NET40</OutputPath>
2324
<BaseIntermediateOutputPath>obj\NET40</BaseIntermediateOutputPath>
25+
<DefineConstants>DEBUG;TRACE</DefineConstants>
2426
</PropertyGroup>
2527
<ItemGroup>
2628
<None Remove="Entity\ProviderManifest.xml" />

Provider/src/FirebirdSql.Data.FirebirdClient/FirebirdSql.Data.FirebirdClient_NET45.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
1414
<OutputPath>bin\Release\NET45</OutputPath>
1515
<BaseIntermediateOutputPath>obj\NET45</BaseIntermediateOutputPath>
16-
<DefineConstants>NET45</DefineConstants>
16+
<DefineConstants>TRACE;NET45</DefineConstants>
1717
</PropertyGroup>
1818
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
1919
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
2020
<OutputPath>bin\Debug\NET45</OutputPath>
2121
<BaseIntermediateOutputPath>obj\NET45</BaseIntermediateOutputPath>
22-
<DefineConstants>NET45</DefineConstants>
22+
<DefineConstants>TRACE;DEBUG;NET45</DefineConstants>
2323
</PropertyGroup>
2424
<ItemGroup>
2525
<None Remove="Entity\ProviderManifest.xml" />

Provider/src/FirebirdSql.Data.FirebirdClient/FirebirdSql.Data.FirebirdClient_NETSTANDARD16.csproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,14 @@
1212
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
1313
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
1414
<OutputPath>bin\Release\netstandard1.6</OutputPath>
15-
<BaseIntermediateOutputPath>obj\netstandard1.6</BaseIntermediateOutputPath>
15+
<BaseIntermediateOutputPath>obj\netstandard1.6</BaseIntermediateOutputPath>
16+
<DefineConstants>TRACE</DefineConstants>
1617
</PropertyGroup>
1718
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
1819
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
1920
<OutputPath>bin\Debug\netstandard1.6</OutputPath>
20-
<BaseIntermediateOutputPath>obj\netstandard1.6</BaseIntermediateOutputPath>
21+
<BaseIntermediateOutputPath>obj\netstandard1.6</BaseIntermediateOutputPath>
22+
<DefineConstants>DEBUG;TRACE</DefineConstants>
2123
</PropertyGroup>
2224
<ItemGroup>
2325
<None Remove="Schema\FbMetaData.xml" />

0 commit comments

Comments
 (0)