-
-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathData.csproj
More file actions
50 lines (40 loc) · 2.34 KB
/
Copy pathData.csproj
File metadata and controls
50 lines (40 loc) · 2.34 KB
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
41
42
43
44
45
46
47
48
49
50
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>DuckDB ADO.NET Provider for C#.</Description>
<PackageReleaseNotes>
- Updated to DuckDB v1.5.5
New features:
- Apache Arrow result streaming via DuckDBCommand.ExecuteArrowStream and ExecuteArrowBatchesAsync (#26)
- New allocation-free DuckDBAppender.AppendRow API with reusable rows
- Support for byte[] columns in DuckDBAppenderMap
Fixes:
- Fixed IndexOutOfRangeException when accessing reader metadata after exhausting the result set (#332)
Performance:
- Reduced allocations in parameter binding and same-type object reads
</PackageReleaseNotes>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>..\keyPair.snk</AssemblyOriginatorKeyFile>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition="'$(BuildType)' == 'ManagedOnly' ">
<Description>$(Description) $(NoNativeText)</Description>
</PropertyGroup>
<PropertyGroup Condition="'$(CI)' == 'true'">
<DefineConstants>$(DefineConstants);CI</DefineConstants>
</PropertyGroup>
<ItemGroup Condition="'$(CI)' == 'true'">
<PackageReference Include="GitVersion.MsBuild" Version="6.4.0" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="DuckDB.NET.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100852ebcffb69a0dfb906bc0377ec8608f4a00ba9af2e29300d1ed77dcb2583f08116b1a1006d202d53a48ec0561c1816738368378f7c5d335fec3daa63ba1b5413298153f886aafc75304e7653715f2395ad370fe3b2f4bc44a36a2f6b958fd500a2f7eea9a69c6ab5819e0933db962630c56c1610c7c87ed6a3c2b36e1ca4ed2" />
<!-- The signed benchmark assembly needs internal mappings to reproduce the pre-AppendRow baseline. -->
<InternalsVisibleTo Include="DuckDB.NET.Benchmarks, PublicKey=0024000004800000940000000602000000240000525341310004000001000100852ebcffb69a0dfb906bc0377ec8608f4a00ba9af2e29300d1ed77dcb2583f08116b1a1006d202d53a48ec0561c1816738368378f7c5d335fec3daa63ba1b5413298153f886aafc75304e7653715f2395ad370fe3b2f4bc44a36a2f6b958fd500a2f7eea9a69c6ab5819e0933db962630c56c1610c7c87ed6a3c2b36e1ca4ed2" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Apache.Arrow" Version="23.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DuckDB.NET.Bindings\Bindings.csproj" />
</ItemGroup>
</Project>