| 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | |
| 3 | <PropertyGroup> |
| 4 | <OutputType>Exe</OutputType> |
| 5 | <TargetFramework>net10.0</TargetFramework> |
| 6 | <ImplicitUsings>enable</ImplicitUsings> |
| 7 | <Nullable>enable</Nullable> |
| 8 | </PropertyGroup> |
| 9 | |
| 10 | <ItemGroup> |
| 11 | <PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="10.0.2" /> |
| 12 | <PackageReference Include="Spectre.Console" Version="0.49.1" /> |
| 13 | <PackageReference Include="Spectre.Console.Cli" Version="0.49.1" /> |
| 14 | <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.2" /> |
| 15 | <PackageReference Include="System.Configuration.ConfigurationManager" Version="10.0.2" /> |
| 16 | <PackageReference Include="Telegram.Bot" Version="18.0.0" /> |
| 17 | <PackageReference Include="WTelegramClient" Version="3.4.2" /> |
| 18 | <PackageReference Include="Markdig" Version="0.37.0" /> |
| 19 | <PackageReference Include="Tomlyn" Version="1.0.0" /> |
| 20 | </ItemGroup> |
| 21 | |
| 22 | <ItemGroup> |
| 23 | <None Update="appsettings.toml.example"> |
| 24 | <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 25 | </None> |
| 26 | <None Update="appsettings.toml"> |
| 27 | <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 28 | </None> |
| 29 | <None Update="appsettings.json"> |
| 30 | <CopyToOutputDirectory>Always</CopyToOutputDirectory> |
| 31 | </None> |
| 32 | <None Update="APP_USAGE.txt"> |
| 33 | <CopyToOutputDirectory>Always</CopyToOutputDirectory> |
| 34 | </None> |
| 35 | <None Update="WTelegram.session"> |
| 36 | <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 37 | </None> |
| 38 | </ItemGroup> |
| 39 | |
| 40 | </Project> |
| 41 | |