75 lines
3.4 KiB
XML
75 lines
3.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<RootNamespace>QuantConnect.Research</RootNamespace>
|
|
<AssemblyName>QuantConnect.Research</AssemblyName>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
|
|
<OutputPath>bin\$(Configuration)\</OutputPath>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<Description>QuantConnect LEAN Engine: Research Project - Core implementation for jupyter research environment</Description>
|
|
<NoWarn>CA1062</NoWarn>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<DebugType>pdbonly</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Include="..\Common\Properties\SharedAssemblyInfo.cs" Link="Properties\SharedAssemblyInfo.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Plotly.NET" Version="5.1.0" />
|
|
<PackageReference Include="Plotly.NET.CSharp" Version="0.13.0" />
|
|
<PackageReference Include="Plotly.NET.Interactive" Version="5.0.0" />
|
|
<PackageReference Include="QuantConnect.pythonnet" Version="2.0.60" />
|
|
<PackageReference Include="NodaTime" Version="3.0.5" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Algorithm.Framework\QuantConnect.Algorithm.Framework.csproj" />
|
|
<ProjectReference Include="..\Algorithm\QuantConnect.Algorithm.csproj" />
|
|
<ProjectReference Include="..\Api\QuantConnect.Api.csproj" />
|
|
<ProjectReference Include="..\Common\QuantConnect.csproj" />
|
|
<ProjectReference Include="..\Configuration\QuantConnect.Configuration.csproj" />
|
|
<ProjectReference Include="..\Engine\QuantConnect.Lean.Engine.csproj" />
|
|
<ProjectReference Include="..\Indicators\QuantConnect.Indicators.csproj" />
|
|
<ProjectReference Include="..\Logging\QuantConnect.Logging.csproj" />
|
|
<ProjectReference Include="..\Queues\QuantConnect.Queues.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="BasicCSharpQuantBookTemplate.ipynb">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="BasicQuantBookTemplate.ipynb">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="Initialize.csx">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="QuantConnect.csx">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
<None Include="..\LICENSE">
|
|
<Pack>True</Pack>
|
|
<PackagePath></PackagePath>
|
|
</None>
|
|
<None Include="readme.md" />
|
|
<Content Include="start.py">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
<PackageCopyToOutput>true</PackageCopyToOutput>
|
|
</Content>
|
|
</ItemGroup>
|
|
</Project>
|