Ei kuvausta

CallCenter.Utility.csproj 6.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="14.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>{4DA219CC-911E-4C81-BB0B-DF5183FD50FF}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>CallCenter.Utility</RootNamespace>
  11. <AssemblyName>CallCenter.Utility</AssemblyName>
  12. <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <TargetFrameworkProfile />
  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="log4net, Version=2.0.7.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
  35. <HintPath>..\..\packages\log4net.2.0.7\lib\net45-full\log4net.dll</HintPath>
  36. <Private>True</Private>
  37. </Reference>
  38. <Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  39. <HintPath>..\..\packages\Newtonsoft.Json.13.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
  40. </Reference>
  41. <Reference Include="NPOI, Version=2.3.0.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
  42. <HintPath>..\..\packages\NPOI.2.3.0\lib\net40\NPOI.dll</HintPath>
  43. <Private>True</Private>
  44. </Reference>
  45. <Reference Include="NPOI.OOXML, Version=2.3.0.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
  46. <HintPath>..\..\packages\NPOI.2.3.0\lib\net40\NPOI.OOXML.dll</HintPath>
  47. <Private>True</Private>
  48. </Reference>
  49. <Reference Include="NPOI.OpenXml4Net, Version=2.3.0.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
  50. <HintPath>..\..\packages\NPOI.2.3.0\lib\net40\NPOI.OpenXml4Net.dll</HintPath>
  51. <Private>True</Private>
  52. </Reference>
  53. <Reference Include="NPOI.OpenXmlFormats, Version=2.3.0.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
  54. <HintPath>..\..\packages\NPOI.2.3.0\lib\net40\NPOI.OpenXmlFormats.dll</HintPath>
  55. <Private>True</Private>
  56. </Reference>
  57. <Reference Include="StackExchange.Redis, Version=1.2.6.0, Culture=neutral, processorArchitecture=MSIL">
  58. <HintPath>..\..\packages\StackExchange.Redis.1.2.6\lib\net45\StackExchange.Redis.dll</HintPath>
  59. </Reference>
  60. <Reference Include="System" />
  61. <Reference Include="System.Configuration" />
  62. <Reference Include="System.Core" />
  63. <Reference Include="System.Drawing" />
  64. <Reference Include="System.IO.Compression" />
  65. <Reference Include="System.Management" />
  66. <Reference Include="System.Web" />
  67. <Reference Include="System.Xml.Linq" />
  68. <Reference Include="System.Data.DataSetExtensions" />
  69. <Reference Include="Microsoft.CSharp" />
  70. <Reference Include="System.Data" />
  71. <Reference Include="System.Net.Http" />
  72. <Reference Include="System.Xml" />
  73. </ItemGroup>
  74. <ItemGroup>
  75. <Compile Include="ChineseToPinYin.cs" />
  76. <Compile Include="Configs\Configs.cs" />
  77. <Compile Include="ConvertJson.cs" />
  78. <Compile Include="DataTableExtensions.cs" />
  79. <Compile Include="DirFileHelper.cs" />
  80. <Compile Include="EncryptHelper.cs" />
  81. <Compile Include="FileUp.cs" />
  82. <Compile Include="Linq\LinqExtend.cs" />
  83. <Compile Include="Linq\PredicateExtensionses.cs" />
  84. <Compile Include="log\LogInterface.cs" />
  85. <Compile Include="NPOI\InPutType.cs" />
  86. <Compile Include="RedisHelper.cs" />
  87. <Compile Include="SaltAndHashHelper.cs" />
  88. <Compile Include="SqlChecker.cs" />
  89. <Compile Include="SysInformationHelper.cs" />
  90. <Compile Include="Time\DateTimeConvert.cs" />
  91. <Compile Include="Time\DateTools.cs" />
  92. <Compile Include="VerifyCode\VerifyCode.cs" />
  93. <Compile Include="WeiBo\WeiBoLog.cs" />
  94. <Compile Include="WeiBo\WeiBoHelper.cs" />
  95. <Compile Include="Zip\GZip.cs" />
  96. <Compile Include="HttpHelper.cs" />
  97. <Compile Include="Http\HttpMethods.cs" />
  98. <Compile Include="ImageClass.cs" />
  99. <Compile Include="ImageUpload.cs" />
  100. <Compile Include="JScript.cs" />
  101. <Compile Include="Json\Json.cs" />
  102. <Compile Include="LoginUser.cs" />
  103. <Compile Include="log\Log.cs" />
  104. <Compile Include="log\LogFactory.cs" />
  105. <Compile Include="Mail\MailHelper.cs" />
  106. <Compile Include="NPOI\NPOIHelper.cs" />
  107. <Compile Include="Properties\AssemblyInfo.cs" />
  108. <Compile Include="RandString.cs" />
  109. <Compile Include="RequestString.cs" />
  110. <Compile Include="TypeConverter.cs" />
  111. <Compile Include="ValidateString.cs" />
  112. <Compile Include="Validate\Validate.cs" />
  113. <Compile Include="WebString.cs" />
  114. <Compile Include="Web\AjaxResult.cs" />
  115. <Compile Include="Web\WebHelper.cs" />
  116. <Compile Include="XmlHelper.cs" />
  117. </ItemGroup>
  118. <ItemGroup>
  119. <None Include="packages.config" />
  120. </ItemGroup>
  121. <ItemGroup>
  122. <WCFMetadata Include="Service References\" />
  123. </ItemGroup>
  124. <ItemGroup />
  125. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  126. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  127. Other similar extension points exist, see Microsoft.Common.targets.
  128. <Target Name="BeforeBuild">
  129. </Target>
  130. <Target Name="AfterBuild">
  131. </Target>
  132. -->
  133. </Project>