ProjectBase.Data.csproj 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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>{EC573C83-A921-4670-BF62-F57F836649CC}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>ProjectBase.Data</RootNamespace>
  11. <AssemblyName>ProjectBase.Data</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <Deterministic>true</Deterministic>
  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="ICSharpCode.SharpZipLib, Version=1.1.0.145, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL">
  35. <HintPath>..\packages\SharpZipLib.1.1.0\lib\net45\ICSharpCode.SharpZipLib.dll</HintPath>
  36. </Reference>
  37. <Reference Include="log4net, Version=2.0.8.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
  38. <HintPath>..\packages\log4net.2.0.8\lib\net45-full\log4net.dll</HintPath>
  39. </Reference>
  40. <Reference Include="Microsoft.Practices.EnterpriseLibrary.Common, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  41. <SpecificVersion>False</SpecificVersion>
  42. <HintPath>..\Reference\Microsoft.Practices.EnterpriseLibrary.Common.dll</HintPath>
  43. </Reference>
  44. <Reference Include="Microsoft.Practices.EnterpriseLibrary.Data, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
  45. <SpecificVersion>False</SpecificVersion>
  46. <HintPath>..\Reference\Microsoft.Practices.EnterpriseLibrary.Data.dll</HintPath>
  47. </Reference>
  48. <Reference Include="Microsoft.Practices.ObjectBuilder, Version=1.0.51206.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  49. <SpecificVersion>False</SpecificVersion>
  50. <HintPath>..\Reference\Microsoft.Practices.ObjectBuilder.dll</HintPath>
  51. </Reference>
  52. <Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  53. <HintPath>..\packages\Newtonsoft.Json.12.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
  54. </Reference>
  55. <Reference Include="StackExchange.Redis, Version=1.2.0.0, Culture=neutral, processorArchitecture=MSIL">
  56. <HintPath>..\packages\StackExchange.Redis.1.2.0\lib\net45\StackExchange.Redis.dll</HintPath>
  57. </Reference>
  58. <Reference Include="System" />
  59. <Reference Include="System.Configuration" />
  60. <Reference Include="System.Core" />
  61. <Reference Include="System.IO.Compression" />
  62. <Reference Include="System.Runtime.Serialization" />
  63. <Reference Include="System.Windows.Forms" />
  64. <Reference Include="System.Xml.Linq" />
  65. <Reference Include="System.Data.DataSetExtensions" />
  66. <Reference Include="Microsoft.CSharp" />
  67. <Reference Include="System.Data" />
  68. <Reference Include="System.Net.Http" />
  69. <Reference Include="System.Xml" />
  70. </ItemGroup>
  71. <ItemGroup>
  72. <Compile Include="BaseDAL\AbstractBaseDAL.cs" />
  73. <Compile Include="BaseDAL\BaseBLL.cs" />
  74. <Compile Include="BaseDAL\BaseDatabase\BaseDALSQL.cs" />
  75. <Compile Include="BaseDAL\BaseEntity.cs" />
  76. <Compile Include="BaseDAL\BLLFactory.cs" />
  77. <Compile Include="BaseDAL\IBaseDAL.cs" />
  78. <Compile Include="Encrypt\Base64Util.cs" />
  79. <Compile Include="Encrypt\EncodeHelper.cs" />
  80. <Compile Include="Encrypt\MD5Util.cs" />
  81. <Compile Include="Logs\LogHelper.cs" />
  82. <Compile Include="Pager\PagerHelper.cs" />
  83. <Compile Include="Pager\PagerInfo.cs" />
  84. <Compile Include="Properties\AssemblyInfo.cs" />
  85. <Compile Include="Redis\RedisConnection.cs" />
  86. <Compile Include="Redis\RedisHelper.cs" />
  87. <Compile Include="Zip\ZipUtility.cs" />
  88. </ItemGroup>
  89. <ItemGroup>
  90. <None Include="packages.config" />
  91. </ItemGroup>
  92. <ItemGroup>
  93. <ProjectReference Include="..\ProjectBase.Util\ProjectBase.Util.csproj">
  94. <Project>{86A2B1C2-EFCA-48B2-BEA4-BE7DB24BE679}</Project>
  95. <Name>ProjectBase.Util</Name>
  96. </ProjectReference>
  97. </ItemGroup>
  98. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  99. </Project>