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

View file

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