CB.Cache.csproj 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.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>{DDD12FA8-F412-4DE0-9331-A0BCE38BA8F1}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>CB.Cache</RootNamespace>
  12. <AssemblyName>CB.Cache</AssemblyName>
  13. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  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. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <DebugType>pdbonly</DebugType>
  27. <Optimize>true</Optimize>
  28. <OutputPath>bin\Release\</OutputPath>
  29. <DefineConstants>TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. </PropertyGroup>
  33. <ItemGroup>
  34. <Reference Include="System" />
  35. <Reference Include="System.configuration" />
  36. <Reference Include="System.Core" />
  37. <Reference Include="System.Web" />
  38. <Reference Include="System.Xml.Linq" />
  39. <Reference Include="System.Data.DataSetExtensions" />
  40. <Reference Include="Microsoft.CSharp" />
  41. <Reference Include="System.Data" />
  42. <Reference Include="System.Xml" />
  43. </ItemGroup>
  44. <ItemGroup>
  45. <Compile Include="CacheKeys.cs" />
  46. <Compile Include="CBCache.cs" />
  47. <Compile Include="Properties\AssemblyInfo.cs" />
  48. </ItemGroup>
  49. <ItemGroup>
  50. <ProjectReference Include="..\CB.Cache.Redis\CB.Cache.Redis.csproj">
  51. <Project>{b4f94245-d7c4-4204-824f-3b0f9d9e7bf5}</Project>
  52. <Name>CB.Cache.Redis</Name>
  53. </ProjectReference>
  54. <ProjectReference Include="..\CB.Cache.WebCache\CB.Cache.WebCache.csproj">
  55. <Project>{64b67f64-2cfd-4035-a318-18d91c0c4d23}</Project>
  56. <Name>CB.Cache.WebCache</Name>
  57. </ProjectReference>
  58. <ProjectReference Include="..\CB.Common\CB.Common.csproj">
  59. <Project>{EF59CCC7-D665-4DD1-A5F2-FE8EA107F68F}</Project>
  60. <Name>CB.Common</Name>
  61. </ProjectReference>
  62. <ProjectReference Include="..\CB.Config\CB.Config.csproj">
  63. <Project>{04E6ED1F-372C-4E12-AAD0-409218D2DB59}</Project>
  64. <Name>CB.Config</Name>
  65. </ProjectReference>
  66. <ProjectReference Include="..\CB.Entity\CB.Entity.csproj">
  67. <Project>{cbfe123d-0143-43d5-97bf-611dab2b33f0}</Project>
  68. <Name>CB.Entity</Name>
  69. </ProjectReference>
  70. </ItemGroup>
  71. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  72. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  73. Other similar extension points exist, see Microsoft.Common.targets.
  74. <Target Name="BeforeBuild">
  75. </Target>
  76. <Target Name="AfterBuild">
  77. </Target>
  78. -->
  79. </Project>