forked from TraderOracle/Primus-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPrimus.csproj
52 lines (48 loc) · 2.27 KB
/
Primus.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Reference Include="ATAS.DataFeedsCore">
<HintPath>..\..\..\..\..\Program Files (x86)\ATAS Platform\ATAS.DataFeedsCore.dll</HintPath>
</Reference>
<Reference Include="ATAS.Indicators">
<HintPath>..\..\..\..\..\Program Files (x86)\ATAS Platform\ATAS.Indicators.dll</HintPath>
</Reference>
<Reference Include="ATAS.Indicators.Other">
<HintPath>..\..\..\..\..\Program Files (x86)\ATAS Platform\ATAS.Indicators.Other.dll</HintPath>
</Reference>
<Reference Include="ATAS.Indicators.Technical">
<HintPath>..\..\..\..\..\Program Files (x86)\ATAS Platform\ATAS.Indicators.Technical.dll</HintPath>
</Reference>
<Reference Include="ATAS.Strategies">
<HintPath>..\..\..\..\..\Program Files (x86)\ATAS Platform\ATAS.Strategies.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json">
<HintPath>..\ATASBuySell\bin\Debug\net7.0\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="OFT.Attributes">
<HintPath>..\..\..\..\..\Program Files (x86)\ATAS Platform\OFT.Attributes.dll</HintPath>
</Reference>
<Reference Include="OFT.Rendering">
<HintPath>..\..\..\..\..\Program Files (x86)\ATAS Platform\OFT.Rendering.dll</HintPath>
</Reference>
<Reference Include="PresentationCore">
<HintPath>..\..\..\..\..\Windows\WinSxS\x86_presentationcore_31bf3856ad364e35_10.0.19200.884_none_7b770c589ff732d5\PresentationCore.dll</HintPath>
</Reference>
<Reference Include="System.Drawing.Common">
<HintPath>..\..\..\..\..\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\PublicAssemblies\System.Drawing.Common.dll</HintPath>
</Reference>
<Reference Include="Utils.Common">
<HintPath>..\ATASBuySell\bin\Debug\net7.0\Utils.Common.dll</HintPath>
</Reference>
<Reference Include="Utils.Windows">
<HintPath>..\..\..\..\..\Program Files (x86)\ATAS Platform\Utils.Windows.dll</HintPath>
</Reference>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="call c:\temp\copy_primus.bat" />
</Target>
</Project>