-
Notifications
You must be signed in to change notification settings - Fork 25
/
Optimization.csproj
83 lines (83 loc) · 3.59 KB
/
Optimization.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
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{89D0362E-9AED-4718-B35E-BCAE2949848D}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>Optimization</RootNamespace>
<AssemblyName>Optimization</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Externalconsole>true</Externalconsole>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>full</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Externalconsole>true</Externalconsole>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="GAF">
<HintPath>..\packages\GAF.2.1.1\lib\net40\GAF.dll</HintPath>
</Reference>
<Reference Include="System.ComponentModel.Composition" />
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Algorithm.CSharp\QuantConnect.Algorithm.CSharp.csproj">
<Project>{39A81C16-A1E8-425E-A8F2-1433ADB80228}</Project>
<Name>QuantConnect.Algorithm.CSharp</Name>
</ProjectReference>
<ProjectReference Include="..\Common\QuantConnect.csproj">
<Project>{2545C0B4-FABB-49C9-8DD1-9AD7EE23F86B}</Project>
<Name>QuantConnect</Name>
</ProjectReference>
<ProjectReference Include="..\Engine\QuantConnect.Lean.Engine.csproj">
<Project>{12156F46-D07E-4E3D-AD2B-7409E82AB62F}</Project>
<Name>QuantConnect.Lean.Engine</Name>
</ProjectReference>
<ProjectReference Include="..\Configuration\QuantConnect.Configuration.csproj">
<Project>{0AEB4EA3-28C8-476E-89FD-926F06590B4C}</Project>
<Name>QuantConnect.Configuration</Name>
</ProjectReference>
<ProjectReference Include="..\Interfaces\QuantConnect.Interfaces.csproj">
<Project>{338F614C-4CD7-418A-BD31-8C6A8690CFBF}</Project>
<Name>QuantConnect.Interfaces</Name>
</ProjectReference>
<ProjectReference Include="..\Queues\QuantConnect.Queues.csproj">
<Project>{D6633172-1368-4DF6-9444-825C3E00C819}</Project>
<Name>QuantConnect.Queues</Name>
</ProjectReference>
<ProjectReference Include="..\Messaging\QuantConnect.Messaging.csproj">
<Project>{F2E90E2D-BA25-40E2-B39A-0BA31E68F7F8}</Project>
<Name>QuantConnect.Messaging</Name>
</ProjectReference>
<ProjectReference Include="..\Api\QuantConnect.Api.csproj">
<Project>{C5D44209-49A0-4505-A870-043C5EF5FDDF}</Project>
<Name>QuantConnect.Api</Name>
</ProjectReference>
<ProjectReference Include="..\Logging\QuantConnect.Logging.csproj">
<Project>{01911409-86BE-4E7D-9947-DF714138610D}</Project>
<Name>QuantConnect.Logging</Name>
</ProjectReference>
</ItemGroup>
</Project>