-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathQuantConnect.DataSource.IQFeed.csproj
More file actions
47 lines (40 loc) · 1.81 KB
/
QuantConnect.DataSource.IQFeed.csproj
File metadata and controls
47 lines (40 loc) · 1.81 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<TargetFramework>net10.0</TargetFramework>
<Product>QuantConnect.Lean.DataSource.IQFeed</Product>
<AssemblyName>QuantConnect.Lean.DataSource.IQFeed</AssemblyName>
<RootNamespace>QuantConnect.Lean.DataSource.IQFeed</RootNamespace>
<AssemblyTitle>QuantConnect.Lean.DataSource.IQFeed</AssemblyTitle>
<OutputType>Library</OutputType>
<OutputPath>bin\$(Configuration)</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Description>QuantConnect LEAN IQFeed Data Source: IQFeed Data Source plugin for Lean</Description>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>full</DebugType>
<OutputPath>bin\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<OutputPath>bin\Release\</OutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\Lean\Common\Properties\SharedAssemblyInfo.cs" Link="Properties\SharedAssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="IQFeed.CSharpApiClient" Version="2.5.1" />
<PackageReference Include="QuantConnect.Lean.Engine" Version="2.5.*" />
</ItemGroup>
<ItemGroup>
<None Update="IQFeed-symbol-map.json" Pack="True">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<PackageCopyToOutput>true</PackageCopyToOutput>
</None>
</ItemGroup>
</Project>