1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProjectGuid>{C8EA2A5A-C03C-44A0-83B4-42B917FF3627}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>Cache</RootNamespace>
- <AssemblyName>Cache</AssemblyName>
- <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
- <FileAlignment>512</FileAlignment>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\Release\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
- <HintPath>..\packages\Newtonsoft.Json.10.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
- </Reference>
- <Reference Include="StackExchange.Redis, Version=1.2.6.0, Culture=neutral, processorArchitecture=MSIL">
- <HintPath>..\packages\StackExchange.Redis.1.2.6\lib\net45\StackExchange.Redis.dll</HintPath>
- </Reference>
- <Reference Include="System" />
- <Reference Include="System.Configuration" />
- <Reference Include="System.Core" />
- <Reference Include="System.IO.Compression" />
- <Reference Include="System.Web" />
- <Reference Include="System.Xml.Linq" />
- <Reference Include="System.Data.DataSetExtensions" />
- <Reference Include="Microsoft.CSharp" />
- <Reference Include="System.Data" />
- <Reference Include="System.Net.Http" />
- <Reference Include="System.Xml" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="AppCtrl.cs" />
- <Compile Include="WebCache\WebCache.cs" />
- <Compile Include="Cache\AdDataCache.cs" />
- <Compile Include="Cache\BaseDataCache.cs" />
- <Compile Include="Cache\DataItemDetailCache.cs" />
- <Compile Include="Cache\FriendLinksDataCache.cs" />
- <Compile Include="Cache\LotteryCache.cs" />
- <Compile Include="Cache\TDKDataCache.cs" />
- <Compile Include="Cache\TimedDataCache.cs" />
- <Compile Include="Cache\TJDataCache.cs" />
- <Compile Include="Cache\TrendChartCache.cs" />
- <Compile Include="Cache\ZXviewDataCache.cs" />
- <Compile Include="Ctrl.cs" />
- <Compile Include="Entity\EnumFunctionType.cs" />
- <Compile Include="Entity\KeysEnum.cs" />
- <Compile Include="ICache.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="RedisService.cs" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Business\Business.csproj">
- <Project>{1995ef35-2f2a-45d1-b129-370e82db1277}</Project>
- <Name>Business</Name>
- </ProjectReference>
- <ProjectReference Include="..\Common\Common.csproj">
- <Project>{d32362dc-ff23-45a5-9ea9-18e3ac26e48b}</Project>
- <Name>Common</Name>
- </ProjectReference>
- <ProjectReference Include="..\Interface\Interface.csproj">
- <Project>{1c91b09a-ff04-40c7-bc95-badff1771115}</Project>
- <Name>Interface</Name>
- </ProjectReference>
- <ProjectReference Include="..\Models\Models.csproj">
- <Project>{cb2988d4-4e7f-4f53-9cba-4508b483f3ca}</Project>
- <Name>Models</Name>
- </ProjectReference>
- <ProjectReference Include="..\Services\Services.csproj">
- <Project>{08688be4-fb60-4f1c-a129-87daaa4edd3e}</Project>
- <Name>Services</Name>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup>
- <None Include="packages.config" />
- </ItemGroup>
- <ItemGroup />
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- </Project>
|