24 lines
728 B
XML
24 lines
728 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
|
|
<PackageReference Include="System.Text.Json" Version="8.0.5" />
|
|
<PackageReference Include="Telegram.Bot" Version="18.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="Environment.fs" />
|
|
<Compile Include="Types.fs" />
|
|
<Compile Include="Telegram.fs" />
|
|
<Compile Include="YoutubeDl.fs" />
|
|
<Compile Include="Program.fs" />
|
|
<Content Include="config.example.json" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|