2023-02-07 19:48:09 +03:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Telegram.Bot" Version="18.0.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-02-07 21:55:46 +03:00
|
|
|
|
<Compile Include="Environment.fs" />
|
|
|
|
|
<Compile Include="Handlers.fs" />
|
2023-02-07 19:48:09 +03:00
|
|
|
|
<Compile Include="Program.fs" />
|
|
|
|
|
<Content Include="config.example.json" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|