-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDKNet.EfCore.Specifications.csproj
More file actions
37 lines (32 loc) · 1.41 KB
/
DKNet.EfCore.Specifications.csproj
File metadata and controls
37 lines (32 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Authors>Steven Hoang</Authors>
<Authors>https://drunkcoding.net</Authors>
<Copyright>@2026 drunkcoding</Copyright>
<PackageLicense>https://opensource.org/licenses/MIT</PackageLicense>
<PackageProjectUrl>https://github.com/baoduy/DKNet</PackageProjectUrl>
<RepositoryUrl>https://github.com/baoduy/DKNet</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>Repo,Specification,EfCore</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<LangVersion>default</LangVersion>
<NeutralLanguage>en</NeutralLanguage>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>NugetLogo.png</PackageIcon>
<Nullable>enable</Nullable>
<ImplicitUsings>true</ImplicitUsings>
<IsPackable>true</IsPackable>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\NugetLogo.png" Pack="true" PackagePath="\"/>
<None Include="README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore"/>
<PackageReference Include="X.PagedList.EF"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DKNet.EfCore.Repos\DKNet.EfCore.Repos.csproj"/>
</ItemGroup>
</Project>