-
Notifications
You must be signed in to change notification settings - Fork 5
/
NodeBlock.Plugin.Exchange.csproj
49 lines (42 loc) · 2.16 KB
/
NodeBlock.Plugin.Exchange.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<PublishSingleFile>true</PublishSingleFile>
<PublishTrimmed>true</PublishTrimmed>
<PackageId>GraphLinq.Exchange</PackageId>
<Version>1.0.1</Version>
<Authors>GraphLinq Team</Authors>
<Company>GraphLinq</Company>
<PackageDescription>This package allow the GraphLinq Engine to interact with CEX</PackageDescription>
<RepositoryUrl>https://github.com/GraphLinq/GraphLinq.Exchange</RepositoryUrl>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>bin\Debug\netcoreapp3.1\</OutputPath>
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Binance.Net" Version="6.6.4" />
<PackageReference Include="Bitfinex.Net" Version="3.4.2" />
<PackageReference Include="Bittrex.Net" Version="5.0.2" />
<PackageReference Include="CoinEx.Net" Version="3.2.2" />
<PackageReference Include="CoinGeckoAsyncApi" Version="1.6.0" />
<PackageReference Include="Costura.Fody" Version="5.3.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Huobi.Net" Version="2.5.1" />
<PackageReference Include="KrakenExchange.Net" Version="1.3.1" />
<PackageReference Include="Kucoin.Net" Version="2.3.4" />
<PackageReference Include="NetTrader.Indicator" Version="1.0.4" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\GraphLinq.Engine\NodeBlock.Engine.csproj" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="copy /Y "$(TargetDir)$(ProjectName).dll" "$(SolutionDir)\GraphLinq.CLI\bin\Debug\net6.0\plugins"" />
</Target>
</Project>