-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKrystallizer.fsproj
30 lines (26 loc) · 1.12 KB
/
Krystallizer.fsproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<LangVersion>preview</LangVersion>
</PropertyGroup>
<ItemGroup>
<None Include="ConfigurationSchema.json" CopyToOutputDirectory="PreserveNewest" />
<None Include="OutputTemplate.html" CopyToOutputDirectory="PreserveNewest" />
<Compile Include="Infrastructure.fs" />
<Compile Include="Configuration.fs" />
<Compile Include="Database.fs" />
<Compile Include="ProfileHandling.fs" />
<Compile Include="DuplicateHandling.fs" />
<Compile Include="OutputGeneration.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FSharp.Control.AsyncSeq" Version="2.0.23" />
<PackageReference Include="FSharp.SystemTextJson" Version="0.11.13" />
<PackageReference Include="Npgsql" Version="8.0.3" />
<PackageReference Include="Serilog" Version="2.9.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" />
<PackageReference Include="Serilog.Sinks.File" Version="4.1.0" />
</ItemGroup>
</Project>