Files
telegram-bot/Core/Core.csproj
T

26 lines
1.1 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>
2024-07-17 02:38:58 +03:00
<TargetFramework>net8.0</TargetFramework>
2020-03-01 22:09:14 +04:00
<AssemblyName>TelegramBot</AssemblyName>
<RootNamespace>Kruzya.TelegramBot.Core</RootNamespace>
2025-02-09 17:40:03 +02:00
<Nullable>enable</Nullable>
2020-03-01 22:09:14 +04:00
</PropertyGroup>
2021-12-26 17:06:47 +04:00
<PropertyGroup Condition=" '$(RunConfiguration)' == 'Core' " />
2020-03-01 22:09:14 +04:00
<ItemGroup>
2024-07-17 02:38:58 +03:00
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.7">
2021-12-26 17:06:47 +04:00
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
2024-07-17 02:38:58 +03:00
<PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="8.0.7" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.7" />
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="8.0.2" />
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
2025-02-09 17:40:03 +02:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\AleXr64\Telegram-bot-framework\TGBotFramework\BotFramework\BotFramework.csproj" />
</ItemGroup>
2020-03-01 22:09:14 +04:00
</Project>