TDengine/docs/examples/csharp/asyncquery.csproj
xiaolei li 66418d6414
docs(driver):update C# 3.0 CN reference and example code (#15770)
* docs(driver):update C# 3.0 CN reference and example code

* docs(driver):C# 3.0 CN reference fix with comment

* docs(driver):C# 3.0 CN reference update with comment
2022-08-05 20:24:00 +08:00

15 lines
408 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<StartupObject>TDengineExample.AsyncQueryExample</StartupObject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="TDengine.Connector" Version="3.0.0" />
</ItemGroup>
</Project>