Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

CacheControl.csproj 4.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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>{BA63D177-BE9E-41E0-89F5-3D134A26A604}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>CacheControl</RootNamespace>
  11. <AssemblyName>CacheControl</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=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  34. <SpecificVersion>False</SpecificVersion>
  35. <HintPath>..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll</HintPath>
  36. </Reference>
  37. <Reference Include="System" />
  38. <Reference Include="System.Core" />
  39. <Reference Include="System.Net.Http" />
  40. <Reference Include="System.Net.Http.Formatting, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  41. <SpecificVersion>False</SpecificVersion>
  42. <HintPath>..\packages\Microsoft.AspNet.WebApi.Client.5.2.3\lib\net45\System.Net.Http.Formatting.dll</HintPath>
  43. </Reference>
  44. <Reference Include="System.Runtime.Caching" />
  45. <Reference Include="System.Web.Http, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  46. <SpecificVersion>False</SpecificVersion>
  47. <HintPath>..\packages\Microsoft.AspNet.WebApi.Core.5.2.3\lib\net45\System.Web.Http.dll</HintPath>
  48. </Reference>
  49. <Reference Include="System.Web.Http.WebHost, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  50. <SpecificVersion>False</SpecificVersion>
  51. <HintPath>..\packages\Microsoft.AspNet.WebApi.WebHost.5.2.3\lib\net45\System.Web.Http.WebHost.dll</HintPath>
  52. </Reference>
  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.Xml" />
  58. </ItemGroup>
  59. <ItemGroup>
  60. <Compile Include="Business\Attributes\CacheControlAttribute.cs" />
  61. <Compile Include="Business\Attributes\TimeCacheControlAttribute.cs" />
  62. <Compile Include="Business\CacheKey\DefaultCacheKeyGenerator.cs" />
  63. <Compile Include="Business\CacheKey\ICacheKeyGenerator.cs" />
  64. <Compile Include="Business\HttpExtensions\CacheOutputConfiguration.cs" />
  65. <Compile Include="Business\HttpExtensions\HttpConfigurationExtensions.cs" />
  66. <Compile Include="Business\OutputCache\FileOuputCache.cs" />
  67. <Compile Include="Business\OutputCache\IOutputCache.cs" />
  68. <Compile Include="Business\OutputCache\MemoryOutputCache.cs" />
  69. <Compile Include="Business\OutputCache\OutputCacheType.cs" />
  70. <Compile Include="DBO\CacheDbo.cs" />
  71. <Compile Include="Properties\AssemblyInfo.cs" />
  72. </ItemGroup>
  73. <ItemGroup>
  74. <None Include="packages.config" />
  75. </ItemGroup>
  76. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  77. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  78. Other similar extension points exist, see Microsoft.Common.targets.
  79. <Target Name="BeforeBuild">
  80. </Target>
  81. <Target Name="AfterBuild">
  82. </Target>
  83. -->
  84. </Project>