-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathOpenTask.Persistence.csproj
More file actions
53 lines (44 loc) · 1.85 KB
/
OpenTask.Persistence.csproj
File metadata and controls
53 lines (44 loc) · 1.85 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
46
47
48
49
50
51
52
53
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Issues\**" />
<EmbeddedResource Remove="Issues\**" />
<None Remove="Issues\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="QingZhouDbConnection.cs" />
<Compile Remove="Repositorys\OrganizationRepository.cs" />
<Compile Remove="Repositorys\ProjectRepository.cs" />
<Compile Remove="Repositorys\TodoItemRepository.cs" />
</ItemGroup>
<ItemGroup>
<None Remove="xxl-job.sql" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AutoMapper" Version="16.1.1" />
<PackageReference Include="Dapper" Version="2.1.35" />
<!--<PackageReference Include="DapperExtensions" Version="1.7.0" />-->
<PackageReference Include="Dommel" Version="3.3.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.5" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.5" />
<PackageReference Include="Microsoft.Extensions.Options" Version="10.0.0" />
<PackageReference Include="MySql.EntityFrameworkCore" Version="8.0.2" />
<PackageReference Include="NullFX.CRC" Version="1.1.10" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\OpenTask.Domain\OpenTask.Domain.csproj" />
<ProjectReference Include="..\OpenTask.Utility\OpenTask.Utility.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Entitys\" />
<Folder Include="Migrations\" />
</ItemGroup>
</Project>