-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchdb.csproj
20 lines (18 loc) · 913 Bytes
/
chdb.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<InternalsVisibleTo>tests</InternalsVisibleTo>
<TargetFramework>netstandard2.1</TargetFramework>
<RuntimeIdentifier>$(RID)</RuntimeIdentifier>
<!-- <PackageId Condition="$(IsLinuxX64) == true" >chdb-linux-x64</PackageId>
<PackageId Condition="$(IsLinuxArm64) == true" >chdb-linux-arm64</PackageId>
<PackageId Condition="$(IsOsxX64) == true" >chdb-osx-x64</PackageId>
<PackageId Condition="$(IsOsxArm64) == true" >chdb-osx-arm64</PackageId> -->
<PackageId>chdb-$(RID)</PackageId>
<Title>chdb</Title>
<Description>chdb native bindings for dotnet core</Description>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Content Include="libchdb.so" Pack="true" PackagePath="runtimes/$(RID)/native/" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>