mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-03 17:36:59 +01:00
* Need to reference Microsoft.EntityFrameworkCore.Design else you can't generate migrations * fix design time migrations issues * update snapshot ``` Your startup project 'BTCPayServer.Data' doesn't reference Microsoft.EntityFrameworkCore.Design. This package is required for the Entity Framework Core Tools to work. Ensure your startup project is c orrect, install the package, and try again. ``` *
13 lines
826 B
XML
13 lines
826 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="../Build/Version.csproj" Condition="Exists('../Build/Version.csproj')" />
|
|
<Import Project="../Build/Common.csproj" />
|
|
<ItemGroup>
|
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="3.1.1" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.1" />
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="3.1.0" />
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="3.1.0" />
|
|
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="3.0.0-alpha1.20058.15" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="3.1.1" />
|
|
</ItemGroup>
|
|
</Project>
|