You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
664 B
21 lines
664 B
<Project Sdk="Microsoft.NET.Sdk.Web"> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>netcoreapp3.1</TargetFramework> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="7.0.0" /> |
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.4" /> |
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.4" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<None Remove="LongWormMemory.db" /> |
|
<Resource Include="LongWormMemory.db"> |
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory> |
|
</Resource> |
|
</ItemGroup> |
|
|
|
|
|
</Project>
|
|
|