-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathRepository.csproj
More file actions
21 lines (17 loc) · 837 Bytes
/
Copy pathRepository.csproj
File metadata and controls
21 lines (17 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<LangVersion>8.0</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.0.0" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="3.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="RabbitMQ.Client" Version="5.1.2" />
<PackageReference Include="Z.EntityFramework.Plus.EFCore" Version="3.0.13" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Common\CoreDX.Common.Util\CoreDX.Common.Util.csproj" />
<ProjectReference Include="..\Domain.EntityFrameworkCore\Domain.EntityFrameworkCore.csproj" />
</ItemGroup>
</Project>