-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathEmulsion.TestFramework.fsproj
More file actions
34 lines (29 loc) · 1.09 KB
/
Emulsion.TestFramework.fsproj
File metadata and controls
34 lines (29 loc) · 1.09 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
30
31
32
33
34
<!--
SPDX-FileCopyrightText: 2025 Emulsion contributors <https://github.com/codingteam/emulsion>
SPDX-License-Identifier: MIT
-->
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<OutputType>Library</OutputType>
</PropertyGroup>
<ItemGroup>
<Compile Include="LockedBuffer.fs" />
<Compile Include="Logging.fs" />
<Compile Include="Waiter.fs" />
<Compile Include="TestDataStorage.fs" />
<Compile Include="Exceptions.fs" />
<Compile Include="TelegramClientMock.fs" />
<Compile Include="WebFileStorage.fs" />
<Compile Include="FileCacheUtil.fs" />
<Compile Include="StreamUtils.fs" />
<Compile Include="Signals.fs" />
<Compile Include="Lifetimes.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Serilog.Sinks.XUnit" Version="3.0.19" />
<ProjectReference Include="..\Emulsion.Database\Emulsion.Database.fsproj" />
<ProjectReference Include="..\Emulsion.Telegram\Emulsion.Telegram.fsproj" />
</ItemGroup>
</Project>