-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathQuantConnect.DataSource.csproj
More file actions
47 lines (45 loc) · 2.3 KB
/
QuantConnect.DataSource.csproj
File metadata and controls
47 lines (45 loc) · 2.3 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>
<TargetFramework>net10.0</TargetFramework>
<RootNamespace>QuantConnect.DataSource</RootNamespace>
<AssemblyName>QuantConnect.DataSource.QuiverQuant</AssemblyName>
<OutputPath>bin\$(Configuration)</OutputPath>
<DocumentationFile>$(OutputPath)\QuantConnect.DataSource.QuiverQuant.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="QuiverCNBCsAlgorithm.cs" />
<Compile Remove="QuiverCNBCsUniverseSelectionAlgorithm.cs" />
<Compile Remove="QuiverGovernmentContractsAlgorithm.cs" />
<Compile Remove="QuiverGovernmentContractsUniverseSelectionAlgorithm.cs" />
<None Remove="QuiverGovernmentContractsAlgorithm.py" />
<None Remove="QuiverGovernmentContractsUniverseSelectionAlgorithm.py" />
<Compile Remove="QuiverInsiderTradingAlgorithm.cs" />
<Compile Remove="QuiverInsiderTradingUniverseSelectionAlgorithm.cs" />
<Compile Remove="QuiverLobbyingAlgorithm.cs" />
<Compile Remove="QuiverLobbyingUniverseSelectionAlgorithm.cs" />
<None Remove="QuiverLobbyingAlgorithm.py" />
<None Remove="QuiverLobbyingUniverseSelectionAlgorithm.py" />
<Compile Remove="QuiverCongressAlgorithm.cs" />
<Compile Remove="QuiverQuantCongressUniverseSelectionAlgorithm.cs" />
<None Remove="QuiverQuantCongressUniverseSelectionAlgorithm.py" />
<Compile Remove="QuiverWallStreetBetsDataAlgorithm.cs" />
<Compile Remove="QuiverWallStreetBetsUniverseSelectionAlgorithm.cs" />
<None Remove="QuiverWallStreetBetsDataAlgorithm.py" />
<None Remove="QuiverWallStreetBetsUniverseSelectionAlgorithm.py" />
<Compile Remove="QuiverWikipediaDataAlgorithm.cs" />
<Compile Remove="QuiverWikipediaUniverseSelectionAlgorithm.cs" />
<None Remove="QuiverWikipediaDataAlgorithm.py" />
<None Remove="QuiverWikipediaUniverseSelectionAlgorithm.py" />
<None Remove=".gitignore" />
</ItemGroup>
</Project>