forked from QuantConnect/Lean.DataSource.NasdaqDataLink
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathQuantConnect.DataSource.csproj
More file actions
31 lines (27 loc) · 1.15 KB
/
QuantConnect.DataSource.csproj
File metadata and controls
31 lines (27 loc) · 1.15 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>QuantConnect.DataSource</RootNamespace>
<AssemblyName>QuantConnect.DataSource.NasdaqDataLink</AssemblyName>
<OutputPath>bin\$(Configuration)</OutputPath>
<DocumentationFile>$(OutputPath)\QuantConnect.DataSource.NasdaqDataLink.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="QuantConnect.Common" Version="2.5.*" />
<PackageReference Include="protobuf-net" Version="3.1.33" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
</ItemGroup>
<ItemGroup>
<Compile Remove="tests\**" />
<EmbeddedResource Remove="tests\**" />
<None Remove="tests\**" />
<Compile Remove="Demonstration.cs" />
<Compile Remove="DemostrationWithIndicator.cs" />
<Compile Remove="DemostrationWithIndicator.py" />
<Compile Remove="NasdaqFuturesDataAlgorithm.cs" />
<Compile Remove="NasdaqFuturesDataAlgorithm.py" />
<Compile Remove="NasdaqImporterAlgorithm.cs" />
<Compile Remove="NasdaqImporterAlgorithm.py" />
<None Remove=".gitignore" />
</ItemGroup>
</Project>