mirror of
https://gitlab.com/nullmax17/RestySqlite.git
synced 2025-03-14 16:01:13 +03:00
15 lines
393 B
XML
15 lines
393 B
XML
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>net9.0</TargetFramework>
|
||
|
<Nullable>enable</Nullable>
|
||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.1" />
|
||
|
<PackageReference Include="Microsoft.Data.Sqlite" Version="9.0.1" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|