-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathPRTG Redis Sensor.csproj
23 lines (20 loc) · 989 Bytes
/
PRTG Redis Sensor.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>PRTG_Redis_Sensor</RootNamespace>
<DebugType>embedded</DebugType>
<Description>A Redis Sensor for PRTG</Description>
<Copyright>MIT</Copyright>
<PackageProjectUrl>https://github.com/cdemi/PRTG-Redis-Sensor</PackageProjectUrl>
<RepositoryUrl>https://github.com/cdemi/PRTG-Redis-Sensor</RepositoryUrl>
<PackageLicenseUrl>https://github.com/cdemi/PRTG-Redis-Sensor/blob/master/LICENSE</PackageLicenseUrl>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="8.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="StackExchange.Redis" Version="2.7.4" />
</ItemGroup>
</Project>