-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathEmulsion.Web.fsproj
More file actions
29 lines (24 loc) · 924 Bytes
/
Emulsion.Web.fsproj
File metadata and controls
29 lines (24 loc) · 924 Bytes
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.Web">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net10.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="ContentController.fs" />
<Compile Include="HistoryController.fs" />
<Compile Include="WebServer.fs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Emulsion.ContentProxy\Emulsion.ContentProxy.fsproj" />
<ProjectReference Include="..\Emulsion.Settings\Emulsion.Settings.fsproj" />
<ProjectReference Include="..\Emulsion.Telegram\Emulsion.Telegram.fsproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Serilog.AspNetCore" Version="9.0.0" />
<PackageReference Include="Serilog.Extensions.Logging" Version="9.0.2" />
</ItemGroup>
</Project>