-
-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathSamples.csproj
More file actions
28 lines (23 loc) · 778 Bytes
/
Copy pathSamples.csproj
File metadata and controls
28 lines (23 loc) · 778 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<SonarQubeExclude>true</SonarQubeExclude>
<TargetFrameworks>net10.0</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<BuildType>Full</BuildType>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\DuckDB.NET.Test\Helpers\NativeLibraryHelper.cs" Link="Helpers\NativeLibraryHelper.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Dapper" Version="2.1.24" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DuckDB.NET.Data\Data.csproj" />
<ProjectReference Include="..\DuckDB.NET.Bindings\Bindings.csproj" properties="BuildType=Full" />
</ItemGroup>
<ItemGroup>
<Folder Include="Helpers\" />
</ItemGroup>
</Project>