Update to net70

This commit is contained in:
Laura Hausmann 2022-11-17 03:31:51 +01:00
parent f5123f292a
commit fbed02c12a
Signed by: zotan
GPG Key ID: D044E84C5BE01605
1 changed files with 6 additions and 6 deletions

View File

@ -1,20 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net70</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Folder Include="database" />
<Folder Include="database"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="linq2db" Version="4.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="6.0.8" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="6.0.8" />
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.115" />
<PackageReference Include="linq2db" Version="4.2.0"/>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="6.0.8"/>
<PackageReference Include="Microsoft.Data.Sqlite" Version="6.0.8"/>
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.115"/>
</ItemGroup>
</Project>