-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathEmulsion.Telegram.fsproj
More file actions
29 lines (27 loc) · 1.02 KB
/
Copy pathEmulsion.Telegram.fsproj
File metadata and controls
29 lines (27 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!--
SPDX-FileCopyrightText: 2025 Emulsion contributors <https://github.com/codingteam/emulsion>
SPDX-License-Identifier: MIT
-->
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.fs" />
<Compile Include="Html.fs" />
<Compile Include="LinkGenerator.fs" />
<Compile Include="Funogram.fs" />
<Compile Include="Client.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Funogram" Version="3.0.3" />
<PackageReference Include="Funogram.Telegram" Version="8.3.0" />
<PackageReference Include="Serilog" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Emulsion.ContentProxy\Emulsion.ContentProxy.fsproj" />
<ProjectReference Include="..\Emulsion.Messaging\Emulsion.Messaging.fsproj" />
<ProjectReference Include="..\Emulsion.Settings\Emulsion.Settings.fsproj" />
</ItemGroup>
</Project>