Fix csproj formatting.

This commit is contained in:
Paul Chote
2019-05-20 22:58:10 +00:00
committed by abcdefg30
parent 845fca25d1
commit 4f7dca809f
8 changed files with 16 additions and 16 deletions

View File

@@ -14,7 +14,7 @@
</PropertyGroup>
<ItemGroup>
<!-- Work around an issue where Rider does not detect files in the project root using the default glob -->
<Compile Include="**/*.cs" Exclude="$(DefaultItemExcludes)"/>
<Compile Include="**/*.cs" Exclude="$(DefaultItemExcludes)" />
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<DefineConstants>DEBUG;TRACE</DefineConstants>
@@ -39,7 +39,7 @@
<Target Name="DisableAnalyzers" BeforeTargets="CoreCompile" Condition="'$(Configuration)'=='Release'">
<!-- Disable code style analysis on Release builds to improve compile-time performance -->
<ItemGroup Condition="'$(Configuration)'=='Release'">
<Analyzer Remove="@(Analyzer)"/>
<Analyzer Remove="@(Analyzer)" />
</ItemGroup>
</Target>
<ItemGroup>