Skip to content

Commit

Permalink
Remove unnecessary white spaces in project files
Browse files Browse the repository at this point in the history
The commit includes the removal of unused white spaces or empty lines in the Directory.Packages.props and Templates.csproj files. This is part of an effort to declutter and standardize the format of the project files for better readability and maintenance.
  • Loading branch information
Gary Woodfine committed Jan 20, 2024
1 parent a8fd815 commit 7f831bf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 11 deletions.
2 changes: 0 additions & 2 deletions src/Project/Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,13 @@
<PackageVersion Include="Threenine.Data" Version="5.0.1" />
<PackageVersion Include="Threenine.Database.Configuration" Version="1.0.4" />
<PackageVersion Include="Threenine.DataService" Version="0.2.1" />

<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
<PackageVersion Include="Moq" Version="4.18.2" />
<PackageVersion Include="NBuilder" Version="6.1.0" />
<PackageVersion Include="Shouldly" Version="4.1.0" />
<PackageVersion Include="xunit" Version="2.4.2" />
<PackageVersion Include="xunit.runner.visualstudio" Version="2.4.5" />
<PackageVersion Include="coverlet.collector" Version="3.1.2" />

</ItemGroup>
</Project>

15 changes: 6 additions & 9 deletions src/Templates.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
<PackageType>Template</PackageType>
<IsPackable>true</IsPackable>
<PackageId>Threenine.ApiProject</PackageId>

<PackageReadmeFile>readme.md</PackageReadmeFile>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
Expand All @@ -17,13 +16,11 @@
<Content Include="Database\**\*" Exclude="Database\DatabaseProject\bin\**;Database\DatabaseProject\obj\**;Models\bin\**;Models\obj\**" />
<Content Include="Domain\**\*" Exclude="Domain\bin\**;Domain\obj\**" />
<Content Include="ModelConfiguration\**\*" Exclude="ModelConfiguration\bin\**;ModelConfiguration\obj\**" />

<Content Include="Command\**\*" Exclude="Command\**\bin\**;Command\**\obj\**" />
<Content Include="Query\**\*" Exclude="Query\**\bin\**;Query\**\obj\**" />
<Content Include="Solution\**\*" Exclude="Solution\**\bin\**;Solution\**\obj\**;Solution\.idea;Solution\tools\**" />
<Content Include="Project\**\*" Exclude="Project\bin\**;Project\obj\**" />

<None Include="readme.md" Pack="true" PackagePath="\" />
<Compile Remove="**\*" />
<Content Include="Command\**\*" Exclude="Command\**\bin\**;Command\**\obj\**" />
<Content Include="Query\**\*" Exclude="Query\**\bin\**;Query\**\obj\**" />
<Content Include="Solution\**\*" Exclude="Solution\**\bin\**;Solution\**\obj\**;Solution\.idea;Solution\tools\**" />
<Content Include="Project\**\*" Exclude="Project\bin\**;Project\obj\**" />
<None Include="readme.md" Pack="true" PackagePath="\" />
<Compile Remove="**\*" />
</ItemGroup>
</Project>

0 comments on commit 7f831bf

Please sign in to comment.