Skip to content

Commit 97a2b04

Browse files
committed
Added line breaks after each PropertyGroup
Improved readability and comparison of `csproj` files by adding consistent line breaks to differentatiate each `<PropertyGroup />` element. These were originally committed in #2322788, but one project was missed. Whoops.
1 parent 8cd0194 commit 97a2b04

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

OnTopic.Tests/OnTopic.Tests.csproj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2+
23
<PropertyGroup>
34
<TargetFramework>netcoreapp3.0</TargetFramework>
45
<IsPackable>false</IsPackable>
56
<NoWarn>CS1591,1701,1702,CA1707,CA1062,CS8602,CS8604;CA1303;IDE0059</NoWarn>
67
<LangVersion>8.0</LangVersion>
78
<Nullable>enable</Nullable>
89
</PropertyGroup>
10+
911
<PropertyGroup>
1012
<AssemblyTitle>Ignia OnTopic Unit Tests</AssemblyTitle>
1113
<Company>Ignia</Company>
@@ -14,6 +16,7 @@
1416
<Copyright>©2020 Ignia, LLC</Copyright>
1517
<OutputPath>bin\$(Configuration)\</OutputPath>
1618
</PropertyGroup>
19+
1720
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1821
<DebugType>full</DebugType>
1922
<DocumentationFile>bin\$(Configuration)\OnTopic.Tests.XML</DocumentationFile>
@@ -22,6 +25,7 @@
2225
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2326
<DebugType>pdbonly</DebugType>
2427
</PropertyGroup>
28+
2529
<ItemGroup>
2630
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.4">
2731
<PrivateAssets>all</PrivateAssets>
@@ -31,10 +35,12 @@
3135
<PackageReference Include="MSTest.TestAdapter" Version="2.0.0" />
3236
<PackageReference Include="MSTest.TestFramework" Version="2.0.0" />
3337
</ItemGroup>
38+
3439
<ItemGroup>
3540
<ProjectReference Include="..\OnTopic.Data.Caching\OnTopic.Data.Caching.csproj" />
3641
<ProjectReference Include="..\OnTopic.TestDoubles\OnTopic.TestDoubles.csproj" />
3742
<ProjectReference Include="..\OnTopic.ViewModels\OnTopic.ViewModels.csproj" />
3843
<ProjectReference Include="..\OnTopic\OnTopic.csproj" />
3944
</ItemGroup>
45+
4046
</Project>

0 commit comments

Comments
 (0)