Files
telegram-bot/Core/Core.csproj
T

23 lines
1.0 KiB
XML
Raw Normal View History

2020-03-01 22:09:14 +04:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
2020-03-01 22:09:14 +04:00
<AssemblyName>TelegramBot</AssemblyName>
<RootNamespace>Kruzya.TelegramBot.Core</RootNamespace>
</PropertyGroup>
2021-12-26 17:06:47 +04:00
<PropertyGroup Condition=" '$(RunConfiguration)' == 'Core' " />
2020-03-01 22:09:14 +04:00
<ItemGroup>
2021-12-25 16:41:17 +02:00
<PackageReference Include="AleXr64.BotFramework" Version="0.6.3-gea779222d8" />
2021-12-26 17:06:47 +04:00
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.13">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="5.0.13" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="5.0.13" />
<PackageReference Include="Microsoft.Extensions.Hosting.Systemd" Version="5.0.1" />
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="5.0.3" />
2020-03-01 22:09:14 +04:00
</ItemGroup>
</Project>