introduce TIBCO_EMS #define to allow opt-out of CLS-complaince for TIBCO-dependent assy's (since TIBCO assy types aren't CLS-compliant, TIBCO-related SPRNET assy's can't be either)

This commit is contained in:
Steve Bohlen
2015-11-22 13:07:10 -05:00
parent cdfcc1d9a6
commit 0c52b4e17c
2 changed files with 4 additions and 2 deletions

View File

@@ -1,7 +1,9 @@
using System;
using System.Reflection;
#if !TIBCO_EMS
[assembly: CLSCompliant(true)]
#endif
//
// General Information about an assembly is controlled through the following

View File

@@ -23,7 +23,7 @@
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\..\..\build\VS.NET.2010\Spring.Messaging.Ems\Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG;NET_4_0</DefineConstants>
<DefineConstants>TRACE;DEBUG;NET_4_0; TIBCO_EMS</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>Spring.Messaging.Ems.xml</DocumentationFile>
@@ -35,7 +35,7 @@
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\..\..\build\VS.NET.2010\Spring.Messaging.Ems\Release\</OutputPath>
<DefineConstants>TRACE;NET_4_0</DefineConstants>
<DefineConstants>TRACE;NET_4_0;TIBCO_EMS</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>