CP.Cache.csproj 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{0705EE97-087E-4801-B274-7082638A8954}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>CP.Cache</RootNamespace>
  12. <AssemblyName>CP.Cache</AssemblyName>
  13. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <SccProjectName>
  16. </SccProjectName>
  17. <SccLocalPath>
  18. </SccLocalPath>
  19. <SccAuxPath>
  20. </SccAuxPath>
  21. <SccProvider>
  22. </SccProvider>
  23. <TargetFrameworkProfile />
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  26. <DebugSymbols>true</DebugSymbols>
  27. <DebugType>full</DebugType>
  28. <Optimize>false</Optimize>
  29. <OutputPath>bin\Debug\</OutputPath>
  30. <DefineConstants>DEBUG;TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. <Prefer32Bit>false</Prefer32Bit>
  34. </PropertyGroup>
  35. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  36. <DebugType>pdbonly</DebugType>
  37. <Optimize>true</Optimize>
  38. <OutputPath>bin\Release\</OutputPath>
  39. <DefineConstants>TRACE</DefineConstants>
  40. <ErrorReport>prompt</ErrorReport>
  41. <WarningLevel>4</WarningLevel>
  42. <Prefer32Bit>false</Prefer32Bit>
  43. </PropertyGroup>
  44. <ItemGroup>
  45. <Reference Include="ICSharpCode.SharpZipLib">
  46. <HintPath>..\dll\ICSharpCode.SharpZipLib.dll</HintPath>
  47. </Reference>
  48. <Reference Include="log4net">
  49. <HintPath>..\dll\log4net.dll</HintPath>
  50. </Reference>
  51. <Reference Include="Memcached.ClientLibrary">
  52. <HintPath>..\dll\Memcached.ClientLibrary.dll</HintPath>
  53. </Reference>
  54. <Reference Include="Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  55. <HintPath>..\packages\Newtonsoft.Json.10.0.3\lib\net40\Newtonsoft.Json.dll</HintPath>
  56. </Reference>
  57. <Reference Include="ServiceStack.Common">
  58. <HintPath>..\dll\ServiceStack.Common.dll</HintPath>
  59. </Reference>
  60. <Reference Include="ServiceStack.Interfaces">
  61. <HintPath>..\dll\ServiceStack.Interfaces.dll</HintPath>
  62. </Reference>
  63. <Reference Include="ServiceStack.Redis">
  64. <HintPath>..\dll\ServiceStack.Redis.dll</HintPath>
  65. </Reference>
  66. <Reference Include="ServiceStack.Text">
  67. <HintPath>..\dll\ServiceStack.Text.dll</HintPath>
  68. </Reference>
  69. <Reference Include="System" />
  70. <Reference Include="System.configuration" />
  71. <Reference Include="System.Core" />
  72. <Reference Include="System.Runtime.Caching" />
  73. <Reference Include="System.Web" />
  74. <Reference Include="System.Xml.Linq" />
  75. <Reference Include="System.Data.DataSetExtensions" />
  76. <Reference Include="Microsoft.CSharp" />
  77. <Reference Include="System.Data" />
  78. <Reference Include="System.Xml" />
  79. </ItemGroup>
  80. <ItemGroup>
  81. <Compile Include="BaseCache.cs" />
  82. <Compile Include="ICache.cs" />
  83. <Compile Include="Properties\AssemblyInfo.cs" />
  84. <Compile Include="Redis\Config\RedisBaseConfig.cs" />
  85. <Compile Include="Redis\Config\RedisConfig.cs" />
  86. <Compile Include="Redis\Config\RedisConfigPool.cs" />
  87. <Compile Include="Redis\RedisManager.cs" />
  88. <Compile Include="WebCache\WebCacheManager.cs" />
  89. <Compile Include="WMCache.cs" />
  90. </ItemGroup>
  91. <ItemGroup>
  92. <None Include="app.config" />
  93. <None Include="packages.config" />
  94. </ItemGroup>
  95. <ItemGroup>
  96. <ProjectReference Include="..\CP.Common\CP.Common.csproj">
  97. <Project>{cd102a12-e404-4a7c-8788-75e8307b2a9f}</Project>
  98. <Name>CP.Common</Name>
  99. </ProjectReference>
  100. </ItemGroup>
  101. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  102. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  103. Other similar extension points exist, see Microsoft.Common.targets.
  104. <Target Name="BeforeBuild">
  105. </Target>
  106. <Target Name="AfterBuild">
  107. </Target>
  108. -->
  109. </Project>