2020-09-15 12:31:52 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-09-16 01:43:55 +00:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="3.1.8" />
|
2020-09-15 12:31:52 +00:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.0" />
|
|
|
|
<!-- <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.0" /> -->
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.1.0">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="3.1.0" />
|
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.1.0" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="3.1.0" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.0" />
|
2020-09-16 01:43:55 +00:00
|
|
|
<PackageReference Include="Westwind.AspnetCore.LiveReload" Version="0.2.8" />
|
2020-09-15 12:31:52 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|