sharp-trading/sharp.trading.csproj

80 lines
3.4 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)' == '' ">AnyCPU</Platform>
<ProjectGuid>{CAAC53CC-671C-4B1E-8403-1E53D1D40D66}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>sharp.trading</RootNamespace>
<AssemblyName>sharp.trading</AssemblyName>
<TargetFrameworkVersion>v4.7</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Order.cs" />
<Compile Include="OrderBook.cs" />
<Compile Include="TradingConnection.cs" />
<Compile Include="VolumeRate.cs" />
<Compile Include="Market.cs" />
<Compile Include="bittrex\BittrexConnector.cs" />
<Compile Include="bittrex\JSONMarket.cs" />
<Compile Include="bittrex\BittrexMarket.cs" />
<Compile Include="bittrex\BittrexOrderbook.cs" />
<Compile Include="OrderType.cs" />
<Compile Include="OrderTarget.cs" />
<Compile Include="OrderState.cs" />
<Compile Include="bittrex\BittrexOrder.cs" />
<Compile Include="bittrex\BittrexException.cs" />
<Compile Include="Balance.cs" />
<Compile Include="bittrex\BittrexBalance.cs" />
<Compile Include="Currency.cs" />
<Compile Include="bittrex\BittrexCurrency.cs" />
<Compile Include="HistoricTrade.cs" />
<Compile Include="bittrex\BittrexHistoricTrade.cs" />
<Compile Include="TradingEnvironment.cs" />
<Compile Include="cache\HistoryCache.cs" />
<Compile Include="services\ServiceManager.cs" />
<Compile Include="services\ITradingService.cs" />
<Compile Include="cache\HistoryService.cs" />
<Compile Include="cache\WeightedAverage.cs" />
<Compile Include="Tick.cs" />
<Compile Include="bittrex\BittrexTick.cs" />
<Compile Include="OrderbookVolume.cs" />
</ItemGroup>
<ItemGroup>
<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>
</ItemGroup>
<ItemGroup>
<Folder Include="bittrex\" />
<Folder Include="cache\" />
<Folder Include="services\" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>