TradeBot/TradeBot.csproj

71 lines
2.9 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProjectGuid>{AA4843D6-D960-4273-8CC4-3C737471D9CF}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>TradeBot</RootNamespace>
<AssemblyName>TradeBot</AssemblyName>
<TargetFrameworkVersion>v4.7</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ExternalConsole>true</ExternalConsole>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ExternalConsole>true</ExternalConsole>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Runtime.Remoting" />
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="BotSpecification.cs" />
<Compile Include="rpc\RPCRequest.cs" />
<Compile Include="rpc\RPCResponse.cs" />
<Compile Include="BotManager.cs" />
<Compile Include="ServiceDaemon.cs" />
<Compile Include="TradeBotHost.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\sharp-trading\sharp.trading.csproj">
<Project>{CAAC53CC-671C-4B1E-8403-1E53D1D40D66}</Project>
<Name>sharp.trading</Name>
</ProjectReference>
<ProjectReference Include="..\sharp-extensions\sharp.extensions.csproj">
<Project>{97CA3CA9-98B3-4492-B072-D7A5995B68E9}</Project>
<Name>sharp.extensions</Name>
</ProjectReference>
<ProjectReference Include="..\sharp-json\sharp.json.csproj">
<Project>{D9342117-3249-4D8B-87C9-51A50676B158}</Project>
<Name>sharp.json</Name>
</ProjectReference>
<ProjectReference Include="..\sharp.tradebot\sharp.tradebot.csproj">
<Project>{798D4516-84F8-436D-BD7F-17AD288C6776}</Project>
<Name>sharp.tradebot</Name>
</ProjectReference>
<ProjectReference Include="..\BigBot\BigBot.csproj">
<Project>{690293DB-4E8D-44E6-B0AD-3A4FF66E6042}</Project>
<Name>BigBot</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Folder Include="rpc\" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>