publishhelperbot/PublishHelperBot/PublishHelperBot.fsproj

24 lines
728 B
XML
Raw Permalink Normal View History

2023-02-07 19:48:09 +03:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
2024-10-15 19:11:31 +03:00
<TargetFramework>net8.0</TargetFramework>
2023-02-07 19:48:09 +03:00
</PropertyGroup>
<ItemGroup>
2024-10-15 19:11:31 +03:00
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
2023-02-07 19:48:09 +03:00
<PackageReference Include="Telegram.Bot" Version="18.0.0" />
</ItemGroup>
<ItemGroup>
2023-02-07 21:55:46 +03:00
<Compile Include="Environment.fs" />
2023-02-26 19:08:42 +03:00
<Compile Include="Types.fs" />
<Compile Include="Telegram.fs" />
2023-02-11 04:16:34 +03:00
<Compile Include="YoutubeDl.fs" />
2023-02-07 19:48:09 +03:00
<Compile Include="Program.fs" />
<Content Include="config.example.json" />
</ItemGroup>
</Project>