Lottomat.Cache.Redis.csproj 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.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>{51E69AE3-A885-4A84-B71C-801A413C5F1C}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>Lottomat.Cache.Redis</RootNamespace>
  11. <AssemblyName>Lottomat.Cache.Redis</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkProfile />
  15. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
  16. <RestorePackages>true</RestorePackages>
  17. </PropertyGroup>
  18. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>bin\Debug\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. <Prefer32Bit>false</Prefer32Bit>
  27. </PropertyGroup>
  28. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  29. <DebugType>pdbonly</DebugType>
  30. <Optimize>true</Optimize>
  31. <OutputPath>bin\Release\</OutputPath>
  32. <DefineConstants>TRACE</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. <Prefer32Bit>false</Prefer32Bit>
  36. </PropertyGroup>
  37. <ItemGroup>
  38. <Reference Include="ServiceStack.Common">
  39. <HintPath>..\..\packages\ServiceStack.Common.4.0.56\lib\net40\ServiceStack.Common.dll</HintPath>
  40. </Reference>
  41. <Reference Include="ServiceStack.Interfaces">
  42. <HintPath>..\..\packages\ServiceStack.Interfaces.4.0.56\lib\portable-wp80+sl5+net40+win8+wpa81+monotouch+monoandroid+xamarin.ios10\ServiceStack.Interfaces.dll</HintPath>
  43. </Reference>
  44. <Reference Include="ServiceStack.Redis">
  45. <HintPath>..\..\packages\ServiceStack.Redis.4.0.56\lib\net40\ServiceStack.Redis.dll</HintPath>
  46. </Reference>
  47. <Reference Include="ServiceStack.Text">
  48. <HintPath>..\..\packages\ServiceStack.Text.4.0.56\lib\net40\ServiceStack.Text.dll</HintPath>
  49. </Reference>
  50. <Reference Include="System" />
  51. <Reference Include="System.Configuration" />
  52. <Reference Include="System.Core" />
  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="RedisCache.cs" />
  61. <Compile Include="Cache.cs" />
  62. <Compile Include="Properties\AssemblyInfo.cs" />
  63. <Compile Include="RedisConfigInfo.cs" />
  64. </ItemGroup>
  65. <ItemGroup>
  66. <None Include="packages.config" />
  67. </ItemGroup>
  68. <ItemGroup>
  69. <ProjectReference Include="..\..\Lottomat.Util\Lottomat.Util\Lottomat.Utils.csproj">
  70. <Project>{07aa2566-d0e5-47af-a17d-3b1c6aee598d}</Project>
  71. <Name>Lottomat.Utils</Name>
  72. </ProjectReference>
  73. <ProjectReference Include="..\Lottomat.Cache\Lottomat.Cache.csproj">
  74. <Project>{5af4997c-4395-48af-990c-932259111dff}</Project>
  75. <Name>Lottomat.Cache</Name>
  76. </ProjectReference>
  77. </ItemGroup>
  78. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  79. <Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
  80. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  81. <PropertyGroup>
  82. <ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。启用“NuGet 程序包还原”可下载这些程序包。有关详细信息,请参阅 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText>
  83. </PropertyGroup>
  84. <Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
  85. </Target>
  86. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  87. Other similar extension points exist, see Microsoft.Common.targets.
  88. <Target Name="BeforeBuild">
  89. </Target>
  90. <Target Name="AfterBuild">
  91. </Target>
  92. -->
  93. </Project>