-
Notifications
You must be signed in to change notification settings - Fork 256
Expand file tree
/
Copy pathArdalis.Specification.EntityFrameworkCore.csproj
More file actions
29 lines (23 loc) · 1.17 KB
/
Ardalis.Specification.EntityFrameworkCore.csproj
File metadata and controls
29 lines (23 loc) · 1.17 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<Nullable>enable</Nullable>
<AssemblyName>Ardalis.Specification.EntityFrameworkCore</AssemblyName>
<PackageId>Ardalis.Specification.EntityFrameworkCore</PackageId>
<Title>Ardalis.Specification.EntityFrameworkCore</Title>
<Description>EF Core plugin package to Ardalis.Specification containing EF Core evaluator and abstract repository.</Description>
<Summary>EF Core plugin package to Ardalis.Specification containing EF Core evaluator and abstract repository.</Summary>
<Version>8.0.0</Version>
<PackageTags>spec;specification;repository;ddd;ef;ef core;entity framework;entity framework core</PackageTags>
<PackageReleaseNotes>
* Added TFMs net6.0, net7.0 and net8.0
</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Specification\src\Ardalis.Specification\Ardalis.Specification.csproj" />
</ItemGroup>
</Project>