20 lines
497 B
XML
20 lines
497 B
XML
<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>
|
|
<Compile Include="Environment.fs" />
|
|
<Compile Include="Handlers.fs" />
|
|
<Compile Include="Program.fs" />
|
|
<Content Include="config.example.json" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|