mirror of
https://github.com/appinfosapienza/so-un-bot.git
synced 2025-03-13 15:05:22 +01:00
16 lines
485 B
XML
16 lines
485 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
|
<PackageReference Include="Telegram.Bot" Version="17.0.0" />
|
|
<PackageReference Include="Telegram.Bot.Extensions.Polling" Version="1.0.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|