forked from influxdata/influxdb-client-csharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExamples.csproj
More file actions
22 lines (18 loc) · 810 Bytes
/
Examples.csproj
File metadata and controls
22 lines (18 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>netcoreapp3.1;netcoreapp5.0;netcoreapp6.0</TargetFrameworks>
<LangVersion>8</LangVersion>
<VersionPrefix>4.5.0</VersionPrefix>
<VersionSuffix>dev</VersionSuffix>
<IsPackable>false</IsPackable>
<AssemblyOriginatorKeyFile>../Keys/Key.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
<StartupObject>Examples.RunExamples</StartupObject>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Client.Legacy\Client.Legacy.csproj" />
<ProjectReference Include="..\Client.Linq\Client.Linq.csproj" />
<ProjectReference Include="..\Client\Client.csproj" />
</ItemGroup>
</Project>