forked from EllieBotDevs/elliebot
22 lines
703 B
XML
22 lines
703 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>net7.0</TargetFramework>
|
||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
<Nullable>enable</Nullable>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="linq2db.EntityFrameworkCore" Version="7.3.0" />
|
||
|
<PackageReference Include="Microsoft.Extensions.Http" Version="7.0.0" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="..\Ellie.Bot.Common\Ellie.Bot.Common.csproj"/>
|
||
|
<ProjectReference Include="..\Ellie.Bot.Db\Ellie.Bot.Db.csproj"/>
|
||
|
|
||
|
|
||
|
<ProjectReference Include="..\Ellie.Bot.Generators.Cloneable\Ellie.Bot.Generators.Cloneable.csproj" OutputItemType="Analyzer"/>
|
||
|
</ItemGroup>
|
||
|
</Project>
|