Test.csproj 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" 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>{49780335-069D-4D82-BC84-CAE1D79F4CBD}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <RootNamespace>Test</RootNamespace>
  10. <AssemblyName>Test</AssemblyName>
  11. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <PlatformTarget>AnyCPU</PlatformTarget>
  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. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <PlatformTarget>AnyCPU</PlatformTarget>
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>bin\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
  36. <SpecificVersion>False</SpecificVersion>
  37. <HintPath>..\..\References\EntityFramework.dll</HintPath>
  38. </Reference>
  39. <Reference Include="EntityFramework.SqlServer">
  40. <HintPath>..\..\References\EntityFramework.SqlServer.dll</HintPath>
  41. </Reference>
  42. <Reference Include="HK.File.Client, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  43. <SpecificVersion>False</SpecificVersion>
  44. <HintPath>..\..\References\HK.File.Client.dll</HintPath>
  45. </Reference>
  46. <Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  47. <SpecificVersion>False</SpecificVersion>
  48. <HintPath>..\..\References\Newtonsoft.Json.dll</HintPath>
  49. </Reference>
  50. <Reference Include="System" />
  51. <Reference Include="System.Configuration" />
  52. <Reference Include="System.Core" />
  53. <Reference Include="System.Xml.Linq" />
  54. <Reference Include="System.Data.DataSetExtensions" />
  55. <Reference Include="Microsoft.CSharp" />
  56. <Reference Include="System.Data" />
  57. <Reference Include="System.Net.Http" />
  58. <Reference Include="System.Xml" />
  59. </ItemGroup>
  60. <ItemGroup>
  61. <Compile Include="Program.cs" />
  62. <Compile Include="Properties\AssemblyInfo.cs" />
  63. </ItemGroup>
  64. <ItemGroup>
  65. <None Include="App.config">
  66. <SubType>Designer</SubType>
  67. </None>
  68. </ItemGroup>
  69. <ItemGroup>
  70. <ProjectReference Include="..\MSHO.Collection.DataAccess\MSHO.Collection.DataAccess.csproj">
  71. <Project>{91dc72e1-87ff-4c81-b9f5-e65861c3ebdf}</Project>
  72. <Name>MSHO.Collection.DataAccess</Name>
  73. </ProjectReference>
  74. <ProjectReference Include="..\MSHO.Collection.Service\MSHO.Collection.Service.csproj">
  75. <Project>{86e705f3-58f6-4158-a572-7aab2adca8de}</Project>
  76. <Name>MSHO.Collection.Service</Name>
  77. </ProjectReference>
  78. </ItemGroup>
  79. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  80. </Project>