-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathKillpips_QT.csproj
More file actions
33 lines (33 loc) · 1.47 KB
/
Killpips_QT.csproj
File metadata and controls
33 lines (33 loc) · 1.47 KB
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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8</TargetFramework>
<LangVersion>latest</LangVersion>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<Platforms>AnyCPU</Platforms>
<AlgoType>Indicator</AlgoType>
<AssemblyName>Killpips_QT</AssemblyName>
<RootNamespace>Killpips_QT</RootNamespace>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<OutputPath>D:\Quantower\TradingPlatform\v1.141.19\..\..\Settings\Scripts\Indicators\Killpips_QT</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<OutputPath>D:\Quantower\TradingPlatform\v1.141.19\..\..\Settings\Scripts\Indicators\Killpips_QT</OutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Drawing.Common">
<HintPath>..\Delta-Intensity\bin\Debug\net7.0\System.Drawing.Common.dll</HintPath>
</Reference>
<Reference Include="TradingPlatform.BusinessLayer">
<HintPath>D:\Quantower\TradingPlatform\v1.141.19\bin\TradingPlatform.BusinessLayer.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="call c:\temp\copy_QT.bat" />
</Target>
</Project>