forked from 3jane/tindicators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtindicators-lean.csproj
25 lines (21 loc) · 941 Bytes
/
tindicators-lean.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
<!--
# This file is part of tindicators, licensed under GNU LGPL v3.
# Author: Ilya Pikulin <[email protected]>, 2019
-->
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net461</TargetFramework>
<RootNamespace>QuantConnect</RootNamespace>
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
<PackageId>tindicators-lean</PackageId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="QuantConnect.Lean" Version="2.4.5563" />
<PackageReference Include="system.io.packaging" Version="4.5.0" />
</ItemGroup>
<ItemGroup>
<Content Include="build\**" PackagePath="build\%(RecursiveDir)%(Filename)%(Extension)" CopyToOutputDirectory="Always" />
<Content Include="$(MSBuildThisFileDirectory)libindicators.so" CopyToOutputDirectory="Always" />
<Content Include="$(MSBuildThisFileDirectory)indicators.dll" CopyToOutputDirectory="Always" />
</ItemGroup>
</Project>