24 lines
836 B
XML
24 lines
836 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-windows10.0.26100.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<RootNamespace>house_plant_api</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="InTheHand.BluetoothLE" Version="4.0.37" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.0" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.0" />
|
|
<PackageReference Include="RJCP.SerialPortStream" Version="3.0.1" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="7.2.0" />
|
|
<PackageReference Include="System.IO.Ports" Version="9.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Adapters\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|