-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileSyncServer.csproj
More file actions
32 lines (28 loc) · 1.33 KB
/
FileSyncServer.csproj
File metadata and controls
32 lines (28 loc) · 1.33 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<ContainerImageName>filesyncserver</ContainerImageName>
<ContainerImageTag>0.1.0</ContainerImageTag>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Data.Sqlite" Version="8.0.7"/>
<PackageReference Include="Microsoft.NET.Build.Containers" Version="8.0.403" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3"/>
<PackageReference Include="protobuf-net" Version="3.2.30"/>
<PackageReference Include="RocksDB" Version="9.4.0.50294"/>
<PackageReference Include="Serilog" Version="3.1.1"/>
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0"/>
<PackageReference Include="System.Data.SQLite" Version="1.0.118"/>
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.118"/>
<PackageReference Include="TransferLib" Version="0.0.3"/>
<PackageReference Include="XXHash3.NET" Version="2.1.0"/>
</ItemGroup>
<ItemGroup>
<None Update="config.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>