SQLHelper.csproj 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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>{24503E2D-04AF-468D-882A-3335198F147C}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>SQLHelper</RootNamespace>
  11. <AssemblyName>SQLHelper</AssemblyName>
  12. <TargetFrameworkVersion>v4.5.2</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="MySql.Data, Version=6.9.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL">
  34. <HintPath>..\packages\MySql.Data.6.9.9\lib\net45\MySql.Data.dll</HintPath>
  35. </Reference>
  36. <Reference Include="Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  37. <HintPath>..\..\LoginServer\packages\Newtonsoft.Json.10.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
  38. </Reference>
  39. <Reference Include="System" />
  40. <Reference Include="System.Core" />
  41. <Reference Include="System.Xml.Linq" />
  42. <Reference Include="System.Data.DataSetExtensions" />
  43. <Reference Include="Microsoft.CSharp" />
  44. <Reference Include="System.Data" />
  45. <Reference Include="System.Net.Http" />
  46. <Reference Include="System.Xml" />
  47. </ItemGroup>
  48. <ItemGroup>
  49. <Compile Include="CommandInfo.cs" />
  50. <Compile Include="ConnectionParameters.cs" />
  51. <Compile Include="DbHelperMySQL.cs" />
  52. <Compile Include="DbHelperOra.cs" />
  53. <Compile Include="DbHelperSQL.cs" />
  54. <Compile Include="DbHelperSQLite.cs" />
  55. <Compile Include="DbHelperSQLP.cs" />
  56. <Compile Include="HelperEx.cs" />
  57. <Compile Include="Properties\AssemblyInfo.cs" />
  58. <Compile Include="SQLBasisOperation.cs" />
  59. <Compile Include="SqlHelper.cs" />
  60. <Compile Include="Utility.cs" />
  61. </ItemGroup>
  62. <ItemGroup>
  63. <None Include="app.config" />
  64. <None Include="packages.config" />
  65. </ItemGroup>
  66. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  67. </Project>