Advertisement
pszczyg

Porównanie trybów Debug/Release w pliku *.csproj

Jul 27th, 2016
940
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.83 KB | None | 0 0
  1.   <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  2.     <DebugSymbols>true</DebugSymbols>
  3.     <OutputPath>..\..\bin\Debug\</OutputPath>
  4.     <DefineConstants>DEBUG;TRACE</DefineConstants>
  5.     <DebugType>full</DebugType>
  6.     <PlatformTarget>x86</PlatformTarget>
  7.     <ErrorReport>prompt</ErrorReport>
  8.     <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  9.   </PropertyGroup>
  10.   <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  11.     <OutputPath>..\..\bin\Release\</OutputPath>
  12.     <DefineConstants>TRACE</DefineConstants>
  13.     <Optimize>true</Optimize>
  14.     <DebugType>pdbonly</DebugType>
  15.     <PlatformTarget>x86</PlatformTarget>
  16.     <ErrorReport>prompt</ErrorReport>
  17.     <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  18.   </PropertyGroup>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement