Files
telegram-bot/Core/Core.csproj
T

23 lines
1.0 KiB
XML
Raw Normal View History

2023-07-20 20:24:16 +03:00
<Project Sdk="Microsoft.NET.Sdk.Web">
2020-03-01 22:09:14 +04:00
<PropertyGroup>
<TargetFramework>net6.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>
2023-11-01 20:47:14 +02:00
<PackageReference Include="AleXr64.BotFramework" Version="2.0.7-g4bee468724" />
2023-01-02 23:42:07 +02:00
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.1">
2021-12-26 17:06:47 +04:00
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
2023-01-02 23:42:07 +02:00
<PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="7.0.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.1" />
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="7.0.0-silver.1" />
2022-11-14 00:23:36 +02:00
<PackageReference Include="System.Linq.Async" Version="6.0.1" />
2020-03-01 22:09:14 +04:00
</ItemGroup>
</Project>