Muchinfo.MTPClient.Adapter.csproj 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{F213F85B-7367-4590-A09E-3B512B27DB93}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Muchinfo.MTPClient.Adapter</RootNamespace>
  11. <AssemblyName>Client.Adapter</AssemblyName>
  12. <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkProfile />
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. <Prefer32Bit>false</Prefer32Bit>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <DebugType>none</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>bin\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. <Prefer32Bit>false</Prefer32Bit>
  34. </PropertyGroup>
  35. <PropertyGroup>
  36. <SignAssembly>true</SignAssembly>
  37. </PropertyGroup>
  38. <PropertyGroup>
  39. <AssemblyOriginatorKeyFile>Muchinfo.MTPClient.snk</AssemblyOriginatorKeyFile>
  40. </PropertyGroup>
  41. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  42. <DebugSymbols>true</DebugSymbols>
  43. <OutputPath>bin\x86\Debug\</OutputPath>
  44. <DefineConstants>DEBUG;TRACE</DefineConstants>
  45. <DebugType>full</DebugType>
  46. <PlatformTarget>x86</PlatformTarget>
  47. <ErrorReport>prompt</ErrorReport>
  48. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  49. </PropertyGroup>
  50. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
  51. <OutputPath>bin\x86\Release\</OutputPath>
  52. <DefineConstants>TRACE</DefineConstants>
  53. <Optimize>true</Optimize>
  54. <PlatformTarget>x86</PlatformTarget>
  55. <ErrorReport>prompt</ErrorReport>
  56. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  57. </PropertyGroup>
  58. <ItemGroup>
  59. <Reference Include="GalaSoft.MvvmLight.WPF4">
  60. <HintPath>..\..\02.Libs\GalaSoft.MvvmLight.WPF4.dll</HintPath>
  61. </Reference>
  62. <Reference Include="protobuf-net">
  63. <HintPath>..\..\02.Libs\protobuf-net.dll</HintPath>
  64. </Reference>
  65. <Reference Include="System" />
  66. <Reference Include="System.Core" />
  67. <Reference Include="System.Runtime.Serialization" />
  68. <Reference Include="System.Xml.Linq" />
  69. <Reference Include="System.Data.DataSetExtensions" />
  70. <Reference Include="Microsoft.CSharp" />
  71. <Reference Include="System.Data" />
  72. <Reference Include="System.Xml" />
  73. </ItemGroup>
  74. <ItemGroup>
  75. <Compile Include="Abstract\AccountAdapter.cs" />
  76. <Compile Include="Abstract\AnnouncementAdapter.cs" />
  77. <Compile Include="Abstract\BankAdapter.cs" />
  78. <Compile Include="Abstract\DeliveryAdapter.cs" />
  79. <Compile Include="Abstract\ListingAdapter.cs" />
  80. <Compile Include="Abstract\MessageAdapter.cs" />
  81. <Compile Include="Abstract\OrderAdapter.cs" />
  82. <Compile Include="Abstract\SaleAdapter.cs" />
  83. <Compile Include="Data\bank.cs" />
  84. <Compile Include="Data\bank_funcodes.cs" />
  85. <Compile Include="Data\mtp_errorcodes.cs" />
  86. <Compile Include="Data\mtp_funcodes.cs" />
  87. <Compile Include="Data\tas.cs">
  88. <SubType>Code</SubType>
  89. </Compile>
  90. <Compile Include="Json\AccountJsonAdapter.cs" />
  91. <Compile Include="ProtoBuf\AccountProtobufAdapter.cs" />
  92. <Compile Include="Factory\AdapterFactory.cs" />
  93. <Compile Include="Factory\JsonFactory.cs" />
  94. <Compile Include="Factory\ProtobufFactory.cs" />
  95. <Compile Include="Properties\AssemblyInfo.cs" />
  96. <Compile Include="ProtoBuf\AnnouncementProtoAdapter.cs" />
  97. <Compile Include="ProtoBuf\BankProtobufAdapter.cs" />
  98. <Compile Include="ProtoBuf\DeliveryProtoBufAdapter.cs" />
  99. <Compile Include="ProtoBuf\ListingProtoAdapter.cs" />
  100. <Compile Include="ProtoBuf\MassageProbufAdapter.cs" />
  101. <Compile Include="ProtoBuf\OrderProtoBufAdapter.cs" />
  102. <Compile Include="ProtoBuf\SaleProtoBufAdapter.cs" />
  103. <Compile Include="Quote\QuoteDateAdapter.cs" />
  104. <Compile Include="Utilities\ProtoBufHelper.cs" />
  105. </ItemGroup>
  106. <ItemGroup>
  107. <ProjectReference Include="..\Muchinfo.TASClient.Data\Muchinfo.MTPClient.Data.csproj">
  108. <Project>{2c3cb02b-cf9e-4704-990b-5fc15f1ff8e1}</Project>
  109. <Name>Muchinfo.MTPClient.Data</Name>
  110. </ProjectReference>
  111. </ItemGroup>
  112. <ItemGroup>
  113. <None Include="Muchinfo.MTPClient.snk" />
  114. </ItemGroup>
  115. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  116. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  117. Other similar extension points exist, see Microsoft.Common.targets.
  118. <Target Name="BeforeBuild">
  119. </Target>
  120. <Target Name="AfterBuild">
  121. </Target>
  122. -->
  123. </Project>