forked from fsprojects/SQLProvider
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSQLProvider.DuckDb.DesignTime.fsproj
More file actions
57 lines (57 loc) · 2.74 KB
/
SQLProvider.DuckDb.DesignTime.fsproj
File metadata and controls
57 lines (57 loc) · 2.74 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
<?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);NO_GENERATIVE;DESIGNTIME;DUCKDB</DefineConstants>
<OutputPath>..\..\bin\duckdb\typeproviders\fsharp41\</OutputPath>
<AssemblyName>FSharp.Data.SqlProvider.DuckDb.DesignTime</AssemblyName>
<Name>FSharp.Data.SqlProvider.DuckDb</Name>
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
<TargetFSharpCoreVersion>8.0.0.0</TargetFSharpCoreVersion>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<Optimize>true</Optimize>
<Tailcalls>true</Tailcalls>
</PropertyGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.fs" />
<Compile Include="..\..\paket-files\sourcefiles\fsprojects\FSharp.TypeProviders.SDK\src\ProvidedTypes.fsi">
<Paket>True</Paket>
<Link>paket-files/ProvidedTypes.fsi</Link>
</Compile>
<Compile Include="..\..\paket-files\sourcefiles\fsprojects\FSharp.TypeProviders.SDK\src\ProvidedTypes.fs">
<Paket>True</Paket>
<Link>paket-files/ProvidedTypes.fs</Link>
</Compile>
<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" />
<Compile Include="..\SQLProvider.DesignTime\SqlDesignTime.fs" Link="SqlDesignTime.fs" />
</ItemGroup>
<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">
<IncludeAssets>all</IncludeAssets>
</PackageReference>
<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>