-
Notifications
You must be signed in to change notification settings - Fork 16
/
PeriodicIngester.fsproj
29 lines (25 loc) · 1.09 KB
/
PeriodicIngester.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<WarningLevel>5</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Compile Include="Infrastructure.fs" />
<Compile Include="Types.fs" />
<Compile Include="IngesterPrometheus.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.Prometheus" Version="4.0.0-rc.14.5" />
<PackageReference Include="FsCodec.SystemTextJson" Version="3.0.0-rc.14.1" />
<PackageReference Include="prometheus-net.AspNetCore" Version="3.6.0" />
<PackageReference Include="Propulsion.CosmosStore" Version="3.0.0-rc.9.11" />
<PackageReference Include="Propulsion.Feed" Version="3.0.0-rc.9.11" />
<PackageReference Include="Serilog.Sinks.Async" Version="1.5.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="4.0.1" />
</ItemGroup>
</Project>