forked from TraderOracle/BounceBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBounceBot.csproj
52 lines (48 loc) · 2.28 KB
/
BounceBot.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>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="call c:\temp\copy_bounce.bat" />
</Target>
<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="OFT.Attributes">
<HintPath>..\..\..\..\..\Program Files (x86)\ATAS Platform\OFT.Attributes.dll</HintPath>
</Reference>
<Reference Include="OFT.Localization">
<HintPath>..\..\..\..\..\Program Files (x86)\ATAS Platform\OFT.Localization.dll</HintPath>
</Reference>
<Reference Include="OFT.Rendering">
<HintPath>..\..\..\..\..\Program Files (x86)\ATAS Platform\OFT.Rendering.dll</HintPath>
</Reference>
<Reference Include="PresentationCore">
<HintPath>..\..\..\..\..\Windows\Microsoft.NET\Framework64\v4.0.30319\WPF\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="System.ServiceModel">
<HintPath>..\..\..\..\..\Program Files (x86)\ATAS Platform\System.ServiceModel.dll</HintPath>
</Reference>
<Reference Include="Utils.Common">
<HintPath>..\..\..\..\..\Program Files (x86)\ATAS Platform\Utils.Common.dll</HintPath>
</Reference>
</ItemGroup>
</Project>