-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeltaLakeSharp.Client.csproj
More file actions
86 lines (80 loc) · 6.4 KB
/
DeltaLakeSharp.Client.csproj
File metadata and controls
86 lines (80 loc) · 6.4 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>DeltaLakeSharp.Client</RootNamespace>
<AssemblyName>DeltaLakeSharp.Client</AssemblyName>
<TargetFrameworks>net8.0;net472;netstandard2.0</TargetFrameworks>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DebugType>portable</DebugType>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>DeltaLakeSharp.Client.snk</AssemblyOriginatorKeyFile>
<PackageId>DeltaLakeSharp.Client</PackageId>
<Version>0.1.3-preview.1</Version>
<Description>Experimental Delta Lake client library for .NET with Arrow streaming, SQL operations, merge support, and native Rust-backed execution.</Description>
<PackageTags>delta lake;delta;delta-rs;arrow;datafusion;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>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageOutputPath>$(MSBuildThisFileDirectory)bin\$(Configuration)\packages</PackageOutputPath>
<RustV3ProjectDir>$(MSBuildThisFileDirectory)..\DeltaLakeSharp.Server\v3</RustV3ProjectDir>
<RustCargoProfile Condition="'$(Configuration)' == 'Release'">release</RustCargoProfile>
<RustCargoProfile Condition="'$(RustCargoProfile)' == ''">debug</RustCargoProfile>
<RustCargoBuildArg Condition="'$(Configuration)' == 'Release'">--release</RustCargoBuildArg>
<RustTargetCpu Condition="'$(RustTargetCpu)' == ''"></RustTargetCpu>
<RustTargetCpuStampSegment Condition="'$(RustTargetCpu)' == ''">default</RustTargetCpuStampSegment>
<RustTargetCpuStampSegment Condition="'$(RustTargetCpu)' != ''">$(RustTargetCpu)</RustTargetCpuStampSegment>
<RustCargoMessageSuffix Condition="'$(RustTargetCpu)' != ''"> with RUSTFLAGS=-C target-cpu=$(RustTargetCpu)</RustCargoMessageSuffix>
<RustCargoCommandPrefix Condition="'$(RustTargetCpu)' != ''">set "RUSTFLAGS=-C target-cpu=$(RustTargetCpu)" && </RustCargoCommandPrefix>
<RustNativeStampDir>$(BaseIntermediateOutputPath)rust-native</RustNativeStampDir>
<RustNativeStampFile>$(RustNativeStampDir)\$(Configuration)-$(RustTargetCpuStampSegment).stamp</RustNativeStampFile>
<!-- Compatibility tests can compile target framework assets without rebuilding the native Rust library. -->
<SkipRustBuild Condition="'$(SkipRustBuild)' == ''">false</SkipRustBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Apache.Arrow" Version="23.0.0" />
<PackageReference Include="Apache.Arrow.Flight" Version="23.0.0" />
<PackageReference Include="Azure.Identity" Version="1.21.0" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="7.0.1" />
<PackageReference Include="Azure.Storage.Files.DataLake" Version="12.26.0" />
<PackageReference Include="Google.Protobuf" Version="3.35.0" />
<PackageReference Include="Grpc.Net.Client" Version="2.80.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.300" PrivateAssets="All" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net472' Or '$(TargetFramework)' == 'netstandard2.0'">
<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>
<None Include="..\..\README.md" Pack="true" PackagePath="" Link="README.md" />
<None Include="$(RustV3ProjectDir)\target\$(RustCargoProfile)\delta_table_service_native.dll" Pack="true" PackagePath="runtimes\win-x64\native\" Visible="false" Link="runtimes\win-x64\native\delta_table_service_native.dll" Condition="Exists('$(RustV3ProjectDir)\target\$(RustCargoProfile)\delta_table_service_native.dll')" />
<None Include="$(RustV3ProjectDir)\target\$(RustCargoProfile)\libdelta_table_service_native.so" Pack="true" PackagePath="runtimes\linux-x64\native\" Visible="false" Link="runtimes\linux-x64\native\libdelta_table_service_native.so" Condition="Exists('$(RustV3ProjectDir)\target\$(RustCargoProfile)\libdelta_table_service_native.so')" />
</ItemGroup>
<ItemGroup>
<RustNativeInputs Include="$(RustV3ProjectDir)\Cargo.toml" />
<RustNativeInputs Include="$(RustV3ProjectDir)\Cargo.lock" Condition="Exists('$(RustV3ProjectDir)\Cargo.lock')" />
<RustNativeInputs Include="$(RustV3ProjectDir)\src\**\*.rs" />
</ItemGroup>
<Target Name="BuildRustNativeForSingleTargetBuild" BeforeTargets="Build" Condition="'$(DesignTimeBuild)' != 'true' and '$(SkipRustBuild)' != 'true' and '$(IsCrossTargetingBuild)' != 'true'" Inputs="@(RustNativeInputs)" Outputs="$(RustNativeStampFile)">
<Message Importance="high" Text="Building Rust native library for $(Configuration) via cargo build $(RustCargoBuildArg)$(RustCargoMessageSuffix)..." />
<MakeDir Directories="$(RustNativeStampDir)" />
<Exec Command="$(RustCargoCommandPrefix)cargo build $(RustCargoBuildArg)" WorkingDirectory="$(RustV3ProjectDir)" />
<Touch Files="$(RustNativeStampFile)" AlwaysCreate="true" />
</Target>
<Target Name="BuildRustNativeForCrossTargetBuild" BeforeTargets="DispatchToInnerBuilds" Condition="'$(DesignTimeBuild)' != 'true' and '$(SkipRustBuild)' != 'true' and '$(IsCrossTargetingBuild)' == 'true'" Inputs="@(RustNativeInputs)" Outputs="$(RustNativeStampFile)">
<Message Importance="high" Text="Building Rust native library for $(Configuration) package via cargo build $(RustCargoBuildArg)$(RustCargoMessageSuffix)..." />
<MakeDir Directories="$(RustNativeStampDir)" />
<Exec Command="$(RustCargoCommandPrefix)cargo build $(RustCargoBuildArg)" WorkingDirectory="$(RustV3ProjectDir)" />
<Touch Files="$(RustNativeStampFile)" AlwaysCreate="true" />
</Target>
</Project>