25 lines
776 B
XML
25 lines
776 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<OutputType>Library</OutputType>
|
|||
|
|
<TargetFramework>net8.0</TargetFramework>
|
|||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
|
<Nullable>enable</Nullable>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design">
|
|||
|
|
<PrivateAssets>all</PrivateAssets>
|
|||
|
|
</PackageReference>
|
|||
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools">
|
|||
|
|
<PrivateAssets>all</PrivateAssets>
|
|||
|
|
</PackageReference>
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<ProjectReference Include="..\..\migrations\InkForge.Api.Sqlite\InkForge.Api.Sqlite.csproj" />
|
|||
|
|
<ProjectReference Include="..\..\shared\migrations\InkForge.Sqlite\InkForge.Sqlite.csproj" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
</Project>
|