-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQuantConnect.DataSource.csproj
30 lines (26 loc) · 1.12 KB
/
QuantConnect.DataSource.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>QuantConnect.DataSource</RootNamespace>
<AssemblyName>QuantConnect.DataSource.QuiverQuantWikipedia</AssemblyName>
<OutputPath>bin\$(Configuration)</OutputPath>
<DocumentationFile>$(OutputPath)\QuantConnect.DataSource.QuiverQuantWikipedia.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="QuantConnect.Common" Version="2.5.*" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
</ItemGroup>
<ItemGroup>
<Compile Remove="tests\**" />
<EmbeddedResource Remove="tests\**" />
<None Remove="tests\**" />
<Compile Remove="DataProcessing\**" />
<EmbeddedResource Remove="DataProcessing\**" />
<None Remove="DataProcessing\**" />
<Compile Remove="QuiverWikipediaDataAlgorithm.cs" />
<Compile Remove="QuiverWikipediaUniverseSelectionAlgorithm.cs" />
<None Remove="QuiverWikipediaDataAlgorithm.py" />
<None Remove="QuiverWikipediaUniverseSelectionAlgorithm.py" />
<None Remove=".gitignore" />
</ItemGroup>
</Project>