19 lines
596 B
XML
19 lines
596 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\BGPLite.Configuration\BGPLite.Configuration.csproj" />
|
|
<ProjectReference Include="..\BGPLite.Routing\BGPLite.Routing.csproj" />
|
|
<ProjectReference Include="..\BGPLite.Server\BGPLite.Server.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|