-
Notifications
You must be signed in to change notification settings - Fork 159
Expand file tree
/
Copy pathCoreWiki.Data.EntityFramework.csproj
More file actions
28 lines (23 loc) · 1.04 KB
/
CoreWiki.Data.EntityFramework.csproj
File metadata and controls
28 lines (23 loc) · 1.04 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>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TieredCompilation>true</TieredCompilation>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.1.3" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="5.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.1.4" />
<PackageReference Include="NodaTime" Version="2.4.1" />
<PackageReference Include="Npgsql" Version="4.0.3" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="2.1.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CoreWiki.Core\CoreWiki.Core.csproj" />
<ProjectReference Include="..\CoreWiki.Data.Abstractions\CoreWiki.Data.Abstractions.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="**\*.Designer.cs">
<DependentUpon>$([System.String]::Copy("%(Filename)").Replace(".Designer","")).cs</DependentUpon>
</Compile>
</ItemGroup>
</Project>