-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRepositoryKit.EntityFramework.csproj
More file actions
45 lines (41 loc) · 1.71 KB
/
RepositoryKit.EntityFramework.csproj
File metadata and controls
45 lines (41 loc) · 1.71 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
38
39
40
41
42
43
44
45
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>RepositoryKit.EntityFramework</PackageId>
<Title>RepositoryKit.EntityFramework</Title>
<Version>9.0.4</Version>
<AssemblyVersion>9.0.3</AssemblyVersion>
<FileVersion>9.0.3</FileVersion>
<Description>Entity Framework Core implementation of RepositoryKit. Implements IRepository, IRepositoryQuery and IRepositoryBulk using DbContext and DbSet.</Description>
<PackageReleaseNotes>Initial stable version for EF Core repositories using .NET 9 compatible structure.</PackageReleaseNotes>
<PackageTags>repository efcore dbcontext abstraction dotnet</PackageTags>
<RepositoryUrl>https://github.com/taberkkaya/RepositoryKit</RepositoryUrl>
<PackageProjectUrl>https://github.com/taberkkaya/RepositoryKit</PackageProjectUrl>
<PackageIcon>logo-64x64.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Authors>ataberk</Authors>
<Company>ataberk</Company>
<Product>RepositoryKit.EntityFramework</Product>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\RepositoryKit.Core\RepositoryKit.Core.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="LICENSE.txt">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="logo-64x64.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>