-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathClient.Legacy.csproj
40 lines (32 loc) · 1.88 KB
/
Client.Legacy.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
33
34
35
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
<Description>The client that allow perform Flux Query against the InfluxDB 1.7+.</Description>
<Authors>influxdb-client-csharp Contributors</Authors>
<AssemblyName>InfluxDB.Client.Flux</AssemblyName>
<VersionPrefix>4.19.0</VersionPrefix>
<VersionSuffix>dev</VersionSuffix>
<PackageId>InfluxDB.Client.Flux</PackageId>
<PackageTags>influxdata;timeseries;flux;influxdb</PackageTags>
<PackageIcon>influxdata.jpg</PackageIcon>
<PackageIconUrl>https://raw.githubusercontent.com/influxdata/influxdb-client-csharp/master/Assets/influxdata.jpg</PackageIconUrl>
<PackageProjectUrl>https://github.com/influxdata/influxdb-client-csharp/tree/master/Client.Legacy</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/influxdata/influxdb-client-csharp</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>https://github.com/influxdata/influxdb-client-csharp/blob/master/CHANGELOG.md</PackageReleaseNotes>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RootNamespace>InfluxDB.Client.Flux</RootNamespace>
<AssemblyOriginatorKeyFile>../Keys/Key.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Include="..\Assets\influxdata.jpg" Pack="true" PackagePath="" />
<None Include=".\README.md" Pack="true" PackagePath="\"/>
<ProjectReference Include="..\Client.Core\Client.Core.csproj" />
</ItemGroup>
</Project>