forked from fsprojects/SQLProvider
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSQLProvider.DuckDb.Runtime.fsproj
More file actions
53 lines (53 loc) · 2.94 KB
/
SQLProvider.DuckDb.Runtime.fsproj
File metadata and controls
53 lines (53 loc) · 2.94 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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFrameworks>net8.0;netstandard2.0;net462</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DefineConstants>$(DefineConstants);TP_RUNTIME;NO_GENERATIVE;DUCKDB</DefineConstants>
<OutputPath>..\..\bin\duckdb\lib\</OutputPath>
<PackageReleaseNotes>https://github.com/fsprojects/SQLProvider/blob/master/docs/RELEASE_NOTES.md</PackageReleaseNotes>
<PackageProjectUrl>https://fsprojects.github.io/SQLProvider</PackageProjectUrl>
<RepositoryUrl>https://github.com/fsprojects/SQLProvider</RepositoryUrl>
<AssemblyName>FSharp.Data.SqlProvider.DuckDb</AssemblyName>
<Name>FSharp.Data.SqlProvider.DuckDb</Name>
<PackageTags>sql, typeprovider, f#, fsharp, database, dotnet, duckdb</PackageTags>
<PackageLicenseUrl>https://github.com/fsprojects/SQLProvider/blob/master/LICENSE.txt</PackageLicenseUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<RepositoryType>git</RepositoryType>
<Authors>pezipink,colinbull,thorium</Authors>
<FsDocsReleaseNotesLink>https://github.com/fsprojects/SQLProvider/blob/master/docs/RELEASE_NOTES.md</FsDocsReleaseNotesLink>
<FsDocsNavbarPosition>fixed-right</FsDocsNavbarPosition>
<FsDocsWarnOnMissingDocs>false</FsDocsWarnOnMissingDocs>
<FsDocsTheme>default</FsDocsTheme>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\paket-files\sourcefiles\Thorium\Linq.Expression.Optimizer\src\Code\ExpressionOptimizer.fs">
<Paket>True</Paket>
<Link>paket-files/ExpressionOptimizer.fs</Link>
</Compile>
<Compile Include="..\SQLProvider.Runtime\Providers.DuckDb.fs" Link="Providers.DuckDb.fs" />
<Compile Include="..\SQLProvider.Runtime\SqlRuntime.DataContext.fs" Link="SqlRuntime.DataContext.fs" />
</ItemGroup>
<Target Name="BeforeBuild">
<MSBuild Projects="..\SQLProvider.DuckDb.DesignTime\SQLProvider.DuckDb.DesignTime.fsproj" Targets="Build" Properties="Configuration=$(Configuration);TargetFramework=$(TargetFramework)" />
</Target>
<ItemGroup Condition="'$(TargetFramework)' == 'net462'">
<Reference Include="System.Configuration" />
<Reference Include="System.Data" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.IdentityModel" />
<Reference Include="System.ServiceModel" />
<Reference Include="System.Transactions" />
<Reference Include="System.Xml" />
<Reference Include="System.IO.Compression" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DuckDB.NET.Bindings.Full" Version="1.3.2" />
<PackageReference Include="DuckDB.NET.Data.Full" Version="1.3.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SQLProvider.Common\SQLProvider.Common.fsproj" />
</ItemGroup>
<Import Project="..\..\.paket\Paket.Restore.targets" />
</Project>