-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathEmulsion.ContentProxy.fsproj
More file actions
33 lines (26 loc) · 1022 Bytes
/
Emulsion.ContentProxy.fsproj
File metadata and controls
33 lines (26 loc) · 1022 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
30
31
32
33
<!--
SPDX-FileCopyrightText: 2025 Emulsion contributors <https://github.com/codingteam/emulsion>
SPDX-License-Identifier: MIT
-->
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="Proxy.fs" />
<Compile Include="ContentStorage.fs" />
<Compile Include="FileCache.fs" />
<Compile Include="SimpleHttpClientFactory.fs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Emulsion.Database\Emulsion.Database.fsproj" />
<ProjectReference Include="..\Emulsion.Settings\Emulsion.Settings.fsproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Hashids.net" Version="1.7.0" />
<PackageReference Include="JetBrains.Lifetimes" Version="2025.3.1" />
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.0" />
<PackageReference Include="Serilog" Version="4.3.0" />
<PackageReference Include="SimpleBase" Version="5.6.0" />
</ItemGroup>
</Project>