-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathApache.Arrow.Adbc.Tests.Drivers.BigQuery.csproj
More file actions
42 lines (41 loc) · 2.09 KB
/
Apache.Arrow.Adbc.Tests.Drivers.BigQuery.csproj
File metadata and controls
42 lines (41 loc) · 2.09 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks Condition="'$(IsWindows)'=='true'">net8.0;net472</TargetFrameworks>
<TargetFrameworks Condition="'$(TargetFrameworks)'==''">net8.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.14.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.0" />
<PackageReference Include="System.Net.Http.WinHttpHandler" Version="8.0.2" Condition="'$(TargetFrameworkIdentifier)' == '.NETStandard'" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Xunit.SkippableFact" Version="1.5.23" />
<PackageReference Include="Moq" Version="4.20.72" />
<PackageReference Include="OpenTelemetry" Version="1.8.1" />
<PackageReference Include="OpenTelemetry.Exporter.InMemory" Version="1.8.1" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Apache.Arrow.Adbc" Version="0.20.0" />
<PackageReference Include="Apache.Arrow.Adbc.Client" Version="0.20.0" />
<ProjectReference Include="..\src\Apache.Arrow.Adbc.Drivers.BigQuery.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="Resources\BigQueryData.sql">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Resources\bigqueryconfig.json">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Compile Remove="Apache.Arrow.Adbc.Tests\IArrowArrayExtensionsTests.cs" />
<Compile Remove="Apache.Arrow.Adbc.Tests\Client\*.cs" />
<Compile Remove="Apache.Arrow.Adbc.Tests\ClientTests.cs" />
<Compile Remove="Apache.Arrow.Adbc.Tests\DuckDbFixture.cs" />
<Compile Remove="Apache.Arrow.Adbc.Tests\ImportedDuckDbTests.cs" />
<Compile Remove="ClientTests.cs" />
</ItemGroup>
</Project>