Skip to content

Commit b81e617

Browse files
committed
Update project settings
1 parent d4d0540 commit b81e617

File tree

6 files changed

+17
-21
lines changed

6 files changed

+17
-21
lines changed

examples/Example.Website/Controllers/EFController.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Threading.Tasks;
33
using Example.DAL;
44
using Microsoft.AspNetCore.Mvc;
5-
using X.PagedList.EF;
5+
using X.Extensions.PagedList.EF;
66

77
namespace Example.Website.Controllers;
88

src/X.Extensions.PagedList.EF/PagedListExtensions.cs

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
using JetBrains.Annotations;
2-
using Microsoft.EntityFrameworkCore;
3-
using System;
1+
using System;
42
using System.Collections.Generic;
53
using System.Linq;
64
using System.Threading;
75
using System.Threading.Tasks;
6+
using JetBrains.Annotations;
7+
using Microsoft.EntityFrameworkCore;
8+
using X.PagedList;
89

9-
namespace X.PagedList.EF;
10+
namespace X.Extensions.PagedList.EF;
1011

1112
/// <summary>
1213
/// EntityFramework extension methods designed to simplify the creation of instances of <see cref="PagedList{T}"/>.

src/X.Extensions.PagedList.EF/X.Extensions.PagedList.EF.csproj

+2-7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<Title>X.PagedList.EF</Title>
4+
<Title>X.Extensions.PagedList.EF</Title>
55
<Description>EF extensions for X.PagedList library</Description>
66

77
<LangVersion>default</LangVersion>
88
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
99

1010
<PackageTags>paging pagedlist paged list entity framework ef</PackageTags>
11-
12-
<RootNamespace>X.PagedList.EF</RootNamespace>
11+
<PackageIcon>x-web.png</PackageIcon>
1312
</PropertyGroup>
1413

1514
<ItemGroup>
@@ -20,10 +19,6 @@
2019
<None Include="../../LICENSE.md" Pack="true" PackagePath=""/>
2120
</ItemGroup>
2221

23-
<ItemGroup>
24-
<PackageReference Include="JetBrains.Annotations" Version="2024.2.0" PrivateAssets="all"/>
25-
</ItemGroup>
26-
2722
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
2823
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="[7.0.20,8)"/>
2924
</ItemGroup>
-6.07 KB
Binary file not shown.

src/X.PagedList.Mvc.Core/X.PagedList.Mvc.Core.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,23 @@
1212
</PropertyGroup>
1313

1414
<ItemGroup>
15-
<None Include="README.md" Pack="true" PackagePath="" />
15+
<None Include="README.md" Pack="true" PackagePath=""/>
1616
</ItemGroup>
1717

1818
<ItemGroup>
19-
<None Include="../../LICENSE.md" Pack="true" PackagePath="" />
19+
<None Include="../../LICENSE.md" Pack="true" PackagePath=""/>
2020
</ItemGroup>
2121

2222
<ItemGroup>
2323
<None Include="../../x-web.png" Pack="True" PackagePath=""/>
2424
</ItemGroup>
2525

2626
<ItemGroup>
27-
<FrameworkReference Include="Microsoft.AspNetCore.App" />
27+
<FrameworkReference Include="Microsoft.AspNetCore.App"/>
2828
</ItemGroup>
2929

3030
<ItemGroup>
31-
<ProjectReference Include="..\X.Web.PagedList\X.Web.PagedList.csproj" />
31+
<ProjectReference Include="..\X.Web.PagedList\X.Web.PagedList.csproj"/>
3232
</ItemGroup>
3333

3434
</Project>

src/X.Web.PagedList/X.Web.PagedList.csproj

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,24 +12,24 @@
1212
</PropertyGroup>
1313

1414
<ItemGroup>
15-
<None Include="README.md" Pack="true" PackagePath="" />
15+
<None Include="README.md" Pack="true" PackagePath=""/>
1616
</ItemGroup>
1717

1818
<ItemGroup>
19-
<None Include="../../LICENSE.md" Pack="true" PackagePath="" />
19+
<None Include="../../LICENSE.md" Pack="true" PackagePath=""/>
2020
</ItemGroup>
2121

2222
<ItemGroup>
2323
<None Include="../../x-web.png" Pack="True" PackagePath=""/>
2424
</ItemGroup>
2525

2626
<ItemGroup>
27-
<FrameworkReference Include="Microsoft.AspNetCore.App" />
28-
<PackageReference Include="JetBrains.Annotations" Version="2024.2.0" PrivateAssets="all" />
27+
<FrameworkReference Include="Microsoft.AspNetCore.App"/>
28+
<PackageReference Include="JetBrains.Annotations" Version="2024.2.0" PrivateAssets="all"/>
2929
</ItemGroup>
3030

3131
<ItemGroup>
32-
<ProjectReference Include="..\X.PagedList\X.PagedList.csproj" />
32+
<ProjectReference Include="..\X.PagedList\X.PagedList.csproj"/>
3333
</ItemGroup>
3434

3535
</Project>

0 commit comments

Comments
 (0)