-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeltaLakeSharp.Adbc.csproj
More file actions
45 lines (41 loc) · 2.11 KB
/
DeltaLakeSharp.Adbc.csproj
File metadata and controls
45 lines (41 loc) · 2.11 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>DeltaLakeSharp.Adbc</RootNamespace>
<AssemblyName>DeltaLakeSharp.Adbc</AssemblyName>
<TargetFrameworks>net8.0;net472</TargetFrameworks>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\DeltaLakeSharp.Client\DeltaLakeSharp.Client.snk</AssemblyOriginatorKeyFile>
<PackageId>DeltaLakeSharp.Adbc</PackageId>
<Version>0.1.3-preview.1</Version>
<Description>Experimental read-only ADBC driver for Delta Lake tables backed by the DeltaLakeSharp V3 native Rust runtime.</Description>
<PackageTags>delta lake;delta;delta-rs;arrow;adbc;dotnet;rust</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Cappu7ino/DeltaLakeSharp</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/Cappu7ino/DeltaLakeSharp</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Apache.Arrow" Version="23.0.0" />
<PackageReference Include="Apache.Arrow.Adbc" Version="0.23.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.300" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net472'">
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="10.0.8" />
<PackageReference Include="System.Text.Json" Version="10.0.8" />
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.6.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DeltaLakeSharp.Client\DeltaLakeSharp.Client.csproj"
AdditionalProperties="RustTargetCpu=$(RustTargetCpu)" />
</ItemGroup>
</Project>