-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot.csproj
35 lines (32 loc) · 1.48 KB
/
bot.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
33
34
35
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<NoWarn>IDE0049</NoWarn>
<ApplicationIcon>appicon.ico</ApplicationIcon>
<Version>0.0.0</Version>
<FileVersion>0.0.0.0</FileVersion>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="dotenv.net" Version="3.1.2" />
<PackageReference Include="iTextSharp" Version="5.5.13.3" />
<PackageReference Include="JWT" Version="10.0.0" />
<PackageReference Include="Npgsql" Version="8.0.3" />
<PackageReference Include="Serilog" Version="4.0.1" />
<PackageReference Include="Serilog.Extensions.Logging" Version="8.0.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
<PackageReference Include="Serilog.Sinks.File" Version="6.0.0" />
<PackageReference Include="System.Data.SQLite" Version="1.0.117" />
<PackageReference Include="System.Management" Version="7.0.2" />
<PackageReference Include="Telegram.Bot" Version="18.0.0" />
<SupportedPlatform Include="Windows" />
<None Include="version" CopyToOutputDirectory="PreserveNewest" />
<None Include="appicon.ico" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>