Cache.csproj 4.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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>{C8EA2A5A-C03C-44A0-83B4-42B917FF3627}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Cache</RootNamespace>
  11. <AssemblyName>Cache</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <DebugSymbols>true</DebugSymbols>
  17. <DebugType>full</DebugType>
  18. <Optimize>false</Optimize>
  19. <OutputPath>bin\Debug\</OutputPath>
  20. <DefineConstants>DEBUG;TRACE</DefineConstants>
  21. <ErrorReport>prompt</ErrorReport>
  22. <WarningLevel>4</WarningLevel>
  23. </PropertyGroup>
  24. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  25. <DebugType>pdbonly</DebugType>
  26. <Optimize>true</Optimize>
  27. <OutputPath>bin\Release\</OutputPath>
  28. <DefineConstants>TRACE</DefineConstants>
  29. <ErrorReport>prompt</ErrorReport>
  30. <WarningLevel>4</WarningLevel>
  31. </PropertyGroup>
  32. <ItemGroup>
  33. <Reference Include="Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  34. <HintPath>..\packages\Newtonsoft.Json.10.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
  35. </Reference>
  36. <Reference Include="StackExchange.Redis, Version=1.2.6.0, Culture=neutral, processorArchitecture=MSIL">
  37. <HintPath>..\packages\StackExchange.Redis.1.2.6\lib\net45\StackExchange.Redis.dll</HintPath>
  38. </Reference>
  39. <Reference Include="System" />
  40. <Reference Include="System.Configuration" />
  41. <Reference Include="System.Core" />
  42. <Reference Include="System.IO.Compression" />
  43. <Reference Include="System.Web" />
  44. <Reference Include="System.Xml.Linq" />
  45. <Reference Include="System.Data.DataSetExtensions" />
  46. <Reference Include="Microsoft.CSharp" />
  47. <Reference Include="System.Data" />
  48. <Reference Include="System.Net.Http" />
  49. <Reference Include="System.Xml" />
  50. </ItemGroup>
  51. <ItemGroup>
  52. <Compile Include="AppCtrl.cs" />
  53. <Compile Include="WebCache\WebCache.cs" />
  54. <Compile Include="Cache\AdDataCache.cs" />
  55. <Compile Include="Cache\BaseDataCache.cs" />
  56. <Compile Include="Cache\DataItemDetailCache.cs" />
  57. <Compile Include="Cache\FriendLinksDataCache.cs" />
  58. <Compile Include="Cache\LotteryCache.cs" />
  59. <Compile Include="Cache\TDKDataCache.cs" />
  60. <Compile Include="Cache\TimedDataCache.cs" />
  61. <Compile Include="Cache\TJDataCache.cs" />
  62. <Compile Include="Cache\TrendChartCache.cs" />
  63. <Compile Include="Cache\ZXviewDataCache.cs" />
  64. <Compile Include="Ctrl.cs" />
  65. <Compile Include="Entity\EnumFunctionType.cs" />
  66. <Compile Include="Entity\KeysEnum.cs" />
  67. <Compile Include="ICache.cs" />
  68. <Compile Include="Properties\AssemblyInfo.cs" />
  69. <Compile Include="RedisService.cs" />
  70. </ItemGroup>
  71. <ItemGroup>
  72. <ProjectReference Include="..\Business\Business.csproj">
  73. <Project>{1995ef35-2f2a-45d1-b129-370e82db1277}</Project>
  74. <Name>Business</Name>
  75. </ProjectReference>
  76. <ProjectReference Include="..\Common\Common.csproj">
  77. <Project>{d32362dc-ff23-45a5-9ea9-18e3ac26e48b}</Project>
  78. <Name>Common</Name>
  79. </ProjectReference>
  80. <ProjectReference Include="..\Interface\Interface.csproj">
  81. <Project>{1c91b09a-ff04-40c7-bc95-badff1771115}</Project>
  82. <Name>Interface</Name>
  83. </ProjectReference>
  84. <ProjectReference Include="..\Models\Models.csproj">
  85. <Project>{cb2988d4-4e7f-4f53-9cba-4508b483f3ca}</Project>
  86. <Name>Models</Name>
  87. </ProjectReference>
  88. <ProjectReference Include="..\Services\Services.csproj">
  89. <Project>{08688be4-fb60-4f1c-a129-87daaa4edd3e}</Project>
  90. <Name>Services</Name>
  91. </ProjectReference>
  92. </ItemGroup>
  93. <ItemGroup>
  94. <None Include="packages.config" />
  95. </ItemGroup>
  96. <ItemGroup />
  97. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  98. </Project>