2019-08-30 00:24:42 +09:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2019-10-03 16:36:02 +09:00
|
|
|
|
<Import Project="../Build/Version.csproj" Condition="Exists('../Build/Version.csproj')" />
|
2019-08-30 00:24:42 +09:00
|
|
|
|
<Import Project="../Build/Common.csproj" />
|
2019-10-03 16:36:02 +09:00
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp2.1'">
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.9" />
|
2019-08-30 00:24:42 +09:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.1.4" />
|
|
|
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="2.1.2" />
|
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="2.1.2" />
|
|
|
|
|
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="2.0.0" />
|
|
|
|
|
</ItemGroup>
|
2019-10-03 16:36:02 +09:00
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' != 'netcoreapp2.1'">
|
|
|
|
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.0.0" />
|
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="3.0.1" />
|
2019-10-07 15:12:22 +09:00
|
|
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="3.0.0-rc1.final" />
|
2019-10-10 13:42:39 +09:00
|
|
|
|
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="3.0.0-alpha1.19509.59" />
|
2019-10-03 16:36:02 +09:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="3.0.0" />
|
|
|
|
|
</ItemGroup>
|
2019-08-30 00:24:42 +09:00
|
|
|
|
</Project>
|