26 lines
985 B
XML
26 lines
985 B
XML
<Project>
|
|
<PropertyGroup>
|
|
<AnalysisLevel>5</AnalysisLevel>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<LangVersion>8.0</LangVersion>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<RunAnalyzersDuringBuild Condition=" '$(MachineRunAnalyzersDuringBuild)' == '' ">false</RunAnalyzersDuringBuild>
|
|
<RunCodeAnalysis>false</RunCodeAnalysis>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>portable</DebugType>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<Optimize>false</Optimize>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
<DebugSymbols>false</DebugSymbols>
|
|
<DebugType>portable</DebugType>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<Optimize>true</Optimize>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(MachineExtraCompilationFlag)' != '' ">
|
|
<DefineConstants>$(DefineConstants);$(MachineExtraCompilationFlag)</DefineConstants>
|
|
</PropertyGroup>
|
|
</Project>
|