File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
src/BenchmarkDotNet/Templates Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 11
11
<OutputType>Exe</OutputType>
12
12
<OutputPath>bin\$CONFIGURATIONNAME$</OutputPath>
13
13
<TreatWarningsAsErrors>False</TreatWarningsAsErrors>
14
- <DebugType>pdbonly</DebugType>
15
- <DebugSymbols>true</DebugSymbols>
14
+ <!-- nice to have for EtwProfiler, but not mandatory. On x86 and ARM disabled due to bug in Roslyn. -->
15
+ <DebugType Condition=" '$(PlatformTarget)' != 'x86' And '$(PlatformTarget)' != 'ARM' ">pdbonly</DebugType>
16
+ <DebugSymbols Condition=" '$(PlatformTarget)' != 'x86' And '$(PlatformTarget)' != 'ARM' ">true</DebugSymbols>
16
17
<UseSharedCompilation>false</UseSharedCompilation>
17
18
<CodeAnalysisRuleSet></CodeAnalysisRuleSet>
19
+ <RunAnalyzers>false</RunAnalyzers>
18
20
<Deterministic>true</Deterministic>
19
21
<!-- needed for custom build configurations (only "Release" builds are optimized by default) -->
20
22
<Optimize Condition=" '$(Configuration)' != 'Debug' ">true</Optimize>
You can’t perform that action at this time.
0 commit comments