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 1111 <OutputType>Exe</OutputType>
1212 <OutputPath>bin\$CONFIGURATIONNAME$</OutputPath>
1313 <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>
1617 <UseSharedCompilation>false</UseSharedCompilation>
1718 <CodeAnalysisRuleSet></CodeAnalysisRuleSet>
19+ <RunAnalyzers>false</RunAnalyzers>
1820 <Deterministic>true</Deterministic>
1921 <!-- needed for custom build configurations (only "Release" builds are optimized by default) -->
2022 <Optimize Condition=" '$(Configuration)' != 'Debug' ">true</Optimize>
You can’t perform that action at this time.
0 commit comments