forked from jet/dotnet-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFeedConsumer.fsproj
More file actions
31 lines (26 loc) · 1.09 KB
/
Copy pathFeedConsumer.fsproj
File metadata and controls
31 lines (26 loc) · 1.09 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<WarningLevel>5</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<OutputType>Exe</OutputType>
<!-- Opt into Roll forward to future major versions as needed -->
<RollForward>Major</RollForward>
</PropertyGroup>
<ItemGroup>
<Compile Include="Infrastructure.fs" />
<Compile Include="Types.fs" />
<Compile Include="Ingester.fs" />
<Compile Include="ApiClient.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Argu" Version="6.1.4" />
<PackageReference Include="Equinox.CosmosStore" Version="4.1.0" />
<PackageReference Include="Equinox.CosmosStore.Prometheus" Version="4.1.0" />
<PackageReference Include="FsCodec.SystemTextJson" Version="3.1.0" />
<PackageReference Include="Propulsion.CosmosStore" Version="3.0.0" />
<PackageReference Include="Serilog.Sinks.Async" Version="1.5.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="4.0.1" />
</ItemGroup>
</Project>