-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathEmulsion.Tests.fsproj
More file actions
47 lines (45 loc) · 2.1 KB
/
Copy pathEmulsion.Tests.fsproj
File metadata and controls
47 lines (45 loc) · 2.1 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
35
36
37
38
39
40
41
42
43
44
45
46
47
<!--
SPDX-FileCopyrightText: 2025 Emulsion contributors <https://github.com/codingteam/emulsion>
SPDX-License-Identifier: MIT
-->
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<Compile Include="ExceptionUtilsTests.fs" />
<Compile Include="LifetimesTests.fs" />
<Compile Include="LoggingTests.fs" />
<Compile Include="MessageSenderTests.fs" />
<Compile Include="MessagingCoreTests.fs" />
<Compile Include="SettingsTests.fs" />
<Compile Include="MessageSystemTests\WrapRunTests.fs" />
<Compile Include="MessageSystemTests\MessageSystemBaseTests.fs" />
<Compile Include="Telegram\Html.fs" />
<Compile Include="Telegram\FunogramTests.fs" />
<Compile Include="Telegram\LinkGeneratorTests.fs" />
<Compile Include="Xmpp\XmppClientFactory.fs" />
<Compile Include="Xmpp\XmppMessageFactory.fs" />
<Compile Include="Xmpp\XmppClientTests.fs" />
<Compile Include="Xmpp\XmppClientRoomTests.fs" />
<Compile Include="Xmpp\SharpXmppHelperTests.fs" />
<Compile Include="Xmpp\SharpXmppPingHandlerTests.fs" />
<Compile Include="Xmpp\EmulsionXmppTests.fs" />
<Compile Include="Database\DataStorageTests.fs" />
<Compile Include="Database\DatabaseStructureTests.fs" />
<Compile Include="ContentProxy\ContentStorageTests.fs" />
<Compile Include="ContentProxy\ProxyTests.fs" />
<Compile Include="ContentProxy\FileCacheTests.fs" />
<Compile Include="Web\ContentControllerTests.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.7.0" />
<PackageReference Include="Serilog.Sinks.TestCorrelator" Version="4.0.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5" />
<ProjectReference Include="../Emulsion/Emulsion.fsproj" />
<ProjectReference Include="..\Emulsion.Database\Emulsion.Database.fsproj" />
<ProjectReference Include="..\Emulsion.TestFramework\Emulsion.TestFramework.fsproj" />
</ItemGroup>
</Project>