-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCubicBot.Telegram.csproj
More file actions
39 lines (35 loc) · 1.59 KB
/
CubicBot.Telegram.csproj
File metadata and controls
39 lines (35 loc) · 1.59 KB
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
33
34
35
36
37
38
39
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Authors>database64128</Authors>
<Copyright>© 2024 database64128</Copyright>
<Description>A stupid and annoying chatbot for your group chats.</Description>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<IsAotCompatible>true</IsAotCompatible>
<PackageId>CubicBot.Telegram</PackageId>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/database64128/CubicBot</PackageProjectUrl>
<Product>Cubic Telegram Bot</Product>
<RepositoryType>Public</RepositoryType>
<RepositoryUrl>https://github.com/database64128/CubicBot</RepositoryUrl>
<TargetFramework>net10.0</TargetFramework>
<Version>1.2.0</Version>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.2" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="10.0.2" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.2" />
<PackageReference Include="Telegram.Bot" Version="22.9.0" />
</ItemGroup>
</Project>