-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathAuth.Persistence.csproj
More file actions
28 lines (23 loc) · 1.16 KB
/
Auth.Persistence.csproj
File metadata and controls
28 lines (23 loc) · 1.16 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>QuantumCore.Auth.Persistence</AssemblyName>
<RootNamespace>QuantumCore.Auth.Persistence</RootNamespace>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\Core\Core.csproj"/>
<ProjectReference Include="..\Core.Persistence\Core.Persistence.csproj" />
<ProjectReference Include="..\..\CorePluginAPI\CorePluginAPI.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="BCrypt.Net-Next" Version="4.0.3"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.0"/>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.0"/>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.0"/>
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0"/>
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="9.0.0"/>
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="Data.Auth.Tests"/>
<InternalsVisibleTo Include="Core.Tests"/>
</ItemGroup>
</Project>