Skip to content

Commit

Permalink
Format project file
Browse files Browse the repository at this point in the history
  • Loading branch information
a-gubskiy committed Oct 12, 2024
1 parent babc167 commit 60a6fc3
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 32 deletions.
10 changes: 5 additions & 5 deletions examples/Example.DAL/Example.DAL.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.8">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.8">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.8"/>
</ItemGroup>

</Project>
14 changes: 7 additions & 7 deletions examples/Example.Website/Example.Website.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,21 @@
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\src\X.PagedList.EF\X.PagedList.EF.csproj" />
<ProjectReference Include="..\..\src\X.PagedList.EF\X.PagedList.EF.csproj"/>
<ProjectReference Include="..\..\src\X.PagedList\X.PagedList.csproj"/>
<ProjectReference Include="..\..\src\X.PagedList.Mvc.Core\X.PagedList.Mvc.Core.csproj" />
<ProjectReference Include="..\..\src\X.PagedList.Mvc.Core\X.PagedList.Mvc.Core.csproj"/>
<ProjectReference Include="..\Example.DAL\Example.DAL.csproj"/>
</ItemGroup>

<ItemGroup>
<AdditionalFiles Include="Areas\Internal\Views\Shared\Error.cshtml" />
<AdditionalFiles Include="Areas\Internal\Views\Shared\_Layout-41.cshtml" />
<AdditionalFiles Include="Areas\Internal\Views\Shared\_Layout.cshtml" />
<AdditionalFiles Include="Areas\Internal\Views\Shared\Error.cshtml"/>
<AdditionalFiles Include="Areas\Internal\Views\Shared\_Layout-41.cshtml"/>
<AdditionalFiles Include="Areas\Internal\Views\Shared\_Layout.cshtml"/>
</ItemGroup>

<ItemGroup>
<_ContentIncludedByDefault Remove="Areas\Internal\Views\Shared\Paging\_Pager.cshtml" />
<_ContentIncludedByDefault Remove="Areas\Internal\Views\Shared\Paging\_Pager_85.cshtml" />
<_ContentIncludedByDefault Remove="Areas\Internal\Views\Shared\Paging\_Pager.cshtml"/>
<_ContentIncludedByDefault Remove="Areas\Internal\Views\Shared\Paging\_Pager_85.cshtml"/>
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion src/X.PagedList.Mvc.Core/X.PagedList.Mvc.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<LangVersion>default</LangVersion>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>

<PackageTags>paging pagedlist paged list web mvc</PackageTags>
</PropertyGroup>

Expand Down
6 changes: 3 additions & 3 deletions src/X.PagedList/X.PagedList.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
</PropertyGroup>

<ItemGroup>
<None Include="../../README.md" Pack="true" PackagePath="" />
<None Include="../../LICENSE.md" Pack="true" PackagePath="" />
<None Include="../../README.md" Pack="true" PackagePath=""/>
<None Include="../../LICENSE.md" Pack="true" PackagePath=""/>
</ItemGroup>

<ItemGroup>
<PackageReference Include="JetBrains.Annotations" Version="2024.2.0" PrivateAssets="all" />
<PackageReference Include="JetBrains.Annotations" Version="2024.2.0" PrivateAssets="all"/>
</ItemGroup>

</Project>
32 changes: 16 additions & 16 deletions tests/X.PagedList.Tests/X.PagedList.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<PropertyGroup>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>

<Nullable>enable</Nullable>
</PropertyGroup>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="xunit" Version="2.9.2" />
<PackageReference Include="AutoFixture.Xunit2" Version="4.18.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1"/>
<PackageReference Include="xunit" Version="2.9.2"/>
<PackageReference Include="AutoFixture.Xunit2" Version="4.18.1"/>
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\src\X.PagedList\X.PagedList.csproj" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\X.PagedList\X.PagedList.csproj"/>
</ItemGroup>

</Project>

0 comments on commit 60a6fc3

Please sign in to comment.