Jelajahi Sumber

commit: add PreRelease conf and fix naming case

码农 5 tahun lalu
induk
melakukan
037de5aa49

+ 10 - 0
Cbdx.BridgeNet/Cbdx.BridgeNet.csproj

@@ -35,6 +35,16 @@
     <ErrorReport>prompt</ErrorReport>
     <WarningLevel>4</WarningLevel>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'PreRelease|AnyCPU'">
+    <DebugSymbols>true</DebugSymbols>
+    <OutputPath>bin\PreRelease\</OutputPath>
+    <DefineConstants>TRACE</DefineConstants>
+    <NoStdLib>true</NoStdLib>
+    <DebugType>full</DebugType>
+    <PlatformTarget>AnyCPU</PlatformTarget>
+    <ErrorReport>prompt</ErrorReport>
+    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
+  </PropertyGroup>
   <ItemGroup>
     <Compile Include="DataExchangeException.cs" />
     <Compile Include="DataExchangeServiceFactory.cs" />

+ 3 - 3
Cbdx.Shared/DataExchangeErrorResult.cs

@@ -2,11 +2,11 @@
 {
     internal class DataExchangeErrorResult : DataExchangeResultBase
     {
-        public DataExchangeErrorResult(string message, string StackTrace)
+        public DataExchangeErrorResult(string message, string stackTrace)
         {
             Success = false;
             Message = message;
-            this.StackTrace = StackTrace;
+            StackTrace = stackTrace;
         }
 
         public DataExchangeErrorResult()
@@ -16,4 +16,4 @@
         public string Message { get; set; }
         public string StackTrace { get; set; }
     }
-}
+}

+ 9 - 0
Cbdx/Cbdx.csproj

@@ -30,6 +30,15 @@
     <ErrorReport>prompt</ErrorReport>
     <WarningLevel>4</WarningLevel>
   </PropertyGroup>
+  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'PreRelease|AnyCPU'">
+    <DebugSymbols>true</DebugSymbols>
+    <OutputPath>bin\PreRelease\</OutputPath>
+    <DefineConstants>TRACE</DefineConstants>
+    <DebugType>full</DebugType>
+    <PlatformTarget>AnyCPU</PlatformTarget>
+    <ErrorReport>prompt</ErrorReport>
+    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
+  </PropertyGroup>
   <ItemGroup>
     <Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
       <HintPath>C:\NuGetLocalRepo\Newtonsoft.Json.12.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>