generated from QuantConnect/Lean.Brokerages.Template
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathQuantConnect.CoinbaseBrokerage.ToolBox.csproj
34 lines (33 loc) · 1.77 KB
/
QuantConnect.CoinbaseBrokerage.ToolBox.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<Copyright>Copyright © 2021</Copyright>
<OutputPath>bin\$(Configuration)\</OutputPath>
<Product>QuantConnect.Brokerages.Coinbase.ToolBox</Product>
<AssemblyName>QuantConnect.Brokerages.Coinbase.ToolBox</AssemblyName>
<RootNamespace>QuantConnect.Brokerages.Coinbase.ToolBox</RootNamespace>
<AssemblyTitle>QuantConnect.Brokerages.Coinbase.ToolBox</AssemblyTitle>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Description>QuantConnect LEAN Coinbase Brokerage: Coinbase Brokerage toolbox plugin for Lean</Description>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>full</DebugType>
<OutputPath>bin\Debug\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<OutputPath>bin\Release\</OutputPath>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\Lean\Common\Properties\SharedAssemblyInfo.cs" Link="Properties\SharedAssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="QuantConnect.ToolBox" Version="2.5.*" />
<ProjectReference Include="..\QuantConnect.CoinbaseBrokerage\QuantConnect.CoinbaseBrokerage.csproj" />
</ItemGroup>
</Project>