2022-09-02 10:51:12 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2024-11-19 02:35:32 +00:00
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2022-09-02 10:51:12 +00:00
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2023-01-17 04:17:14 +00:00
|
|
|
<ItemGroup>
|
2024-11-19 02:35:32 +00:00
|
|
|
<PackageReference Include="TDengine.Connector" Version="3.1.*" GeneratePathProperty="true" />
|
2022-09-02 10:51:12 +00:00
|
|
|
</ItemGroup>
|
2023-01-17 04:17:14 +00:00
|
|
|
<Target Name="copyDLLDependency" BeforeTargets="BeforeBuild">
|
|
|
|
|
<ItemGroup>
|
2023-01-18 05:49:01 +00:00
|
|
|
<DepDLLFiles Include="$(PkgTDengine_Connector)\runtimes\**\*.*" />
|
2023-01-17 04:17:14 +00:00
|
|
|
</ItemGroup>
|
2023-01-18 05:49:01 +00:00
|
|
|
<Copy SourceFiles="@(DepDLLFiles)" DestinationFolder="$(OutDir)" />
|
2023-01-17 04:17:14 +00:00
|
|
|
</Target>
|
2024-11-19 02:35:32 +00:00
|
|
|
</Project>
|