-
Notifications
You must be signed in to change notification settings - Fork 10
/
csv-prometheus-exporter.csproj
32 lines (28 loc) · 1.3 KB
/
csv-prometheus-exporter.csproj
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>net7.0</TargetFramework>
<RootNamespace>csv_prometheus_exporter</RootNamespace>
<GenerateProgramFile>false</GenerateProgramFile>
<LangVersion>default</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Content Include="nlog.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="FastCsvParser" Version="1.1.1"/>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Include="Moq" Version="4.20.69" />
<PackageReference Include="NLog" Version="5.2.4" />
<PackageReference Include="NLog.Extensions.Logging" Version="5.3.4" />
<PackageReference Include="NLog.Web.AspNetCore" Version="5.3.4" />
<PackageReference Include="NUnit" Version="3.13.3"/>
<PackageReference Include="NUnit.ConsoleRunner" Version="3.16.3"/>
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
<PackageReference Include="SSH.NET" Version="2020.0.2"/>
<PackageReference Include="YamlDotNet" Version="13.4.0" />
</ItemGroup>
</Project>