-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTelegram.Bot.UI.csproj
32 lines (28 loc) · 1.28 KB
/
Telegram.Bot.UI.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.0.3</Version>
<PackageId>Telegram.Bot.UI</PackageId>
<Authors>VeyDlin</Authors>
<Description>Convenient creation and localization of bots in Telegram</Description>
<PackageTags>telegram;bot;UI</PackageTags>
<RepositoryUrl>https://github.com/VeyDlin/Telegram.Bot.UI</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="9.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="9.0.2" />
<PackageReference Include="Mime" Version="3.7.0" />
<PackageReference Include="MimeTypesMap" Version="1.0.9" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Scriban" Version="5.12.1" />
<PackageReference Include="Telegram.Bot" Version="22.4.4" />
<PackageReference Include="Vey.Localization" Version="0.0.2" />
<PackageReference Include="Vey.SafeStop" Version="0.0.1" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>