You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

115 lines
5.0 KiB

2 years ago
  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>{D584B1F5-8607-4FFD-BA98-33D0CE115611}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>EasyNet</RootNamespace>
  11. <AssemblyName>EasyNet</AssemblyName>
  12. <TargetFrameworkVersion>v4.6</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. <PropertyGroup>
  34. <SignAssembly>false</SignAssembly>
  35. </PropertyGroup>
  36. <PropertyGroup>
  37. <AssemblyOriginatorKeyFile>
  38. </AssemblyOriginatorKeyFile>
  39. </PropertyGroup>
  40. <ItemGroup>
  41. <Reference Include="log4net, Version=2.0.8.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
  42. <HintPath>..\packages\log4net.2.0.8\lib\net45-full\log4net.dll</HintPath>
  43. <Private>True</Private>
  44. </Reference>
  45. <Reference Include="mysql.data">
  46. <HintPath>..\DLL\mysql.data.dll</HintPath>
  47. </Reference>
  48. <Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  49. <SpecificVersion>False</SpecificVersion>
  50. <HintPath>..\packages\Newtonsoft.Json.11.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
  51. </Reference>
  52. <Reference Include="System" />
  53. <Reference Include="System.configuration" />
  54. <Reference Include="System.Core" />
  55. <Reference Include="System.Data.OracleClient" />
  56. <Reference Include="System.Web" />
  57. <Reference Include="System.Web.Services" />
  58. <Reference Include="System.Xml.Linq" />
  59. <Reference Include="System.Data.DataSetExtensions" />
  60. <Reference Include="Microsoft.CSharp" />
  61. <Reference Include="System.Data" />
  62. <Reference Include="System.Net.Http" />
  63. <Reference Include="System.Xml" />
  64. </ItemGroup>
  65. <ItemGroup>
  66. <Compile Include="Common\ColumnInfo.cs" />
  67. <Compile Include="Common\CommonUtils.cs" />
  68. <Compile Include="Common\DbCondition.cs" />
  69. <Compile Include="Common\DbEntityUtils.cs" />
  70. <Compile Include="Common\DbKeywords.cs" />
  71. <Compile Include="Common\DynamicCalls.cs" />
  72. <Compile Include="Common\IdInfo.cs" />
  73. <Compile Include="Common\Map.cs" />
  74. <Compile Include="Common\PageResult.cs" />
  75. <Compile Include="Common\ParamMap.cs" />
  76. <Compile Include="Common\ReflectionHelper.cs" />
  77. <Compile Include="Common\SQLBuilderHelper.cs" />
  78. <Compile Include="Common\TableInfo.cs" />
  79. <Compile Include="Common\TypeUtils.cs" />
  80. <Compile Include="DBUtility\AdoHelper.cs" />
  81. <Compile Include="DBUtility\CommandInfo.cs" />
  82. <Compile Include="DBUtility\DatabaseType.cs" />
  83. <Compile Include="DBUtility\DbFactory.cs" />
  84. <Compile Include="DBUtility\DbHelper.cs" />
  85. <Compile Include="DBUtility\DbHelperSQL.cs" />
  86. <Compile Include="DBUtility\DbOperateType.cs" />
  87. <Compile Include="EasyNetGlobalConstWord.cs" />
  88. <Compile Include="Enumerations.cs" />
  89. <Compile Include="Manager\DbManager.cs" />
  90. <Compile Include="Manager\ManagerFactory.cs" />
  91. <Compile Include="Manager\ManagerThread.cs" />
  92. <Compile Include="Properties\AssemblyInfo.cs" />
  93. <Compile Include="SecurityUtil.cs" />
  94. </ItemGroup>
  95. <ItemGroup>
  96. <ProjectReference Include="..\Entity\Entity.csproj">
  97. <Project>{fd4879c2-fb2b-4b97-81fb-4ec7fb58a943}</Project>
  98. <Name>Entity</Name>
  99. </ProjectReference>
  100. <ProjectReference Include="..\SqlSugar\SqlSugar.csproj">
  101. <Project>{489bb790-226c-4fad-8d1e-51d72a7ff8e5}</Project>
  102. <Name>SqlSugar</Name>
  103. </ProjectReference>
  104. </ItemGroup>
  105. <ItemGroup>
  106. <None Include="packages.config" />
  107. </ItemGroup>
  108. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  109. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  110. Other similar extension points exist, see Microsoft.Common.targets.
  111. <Target Name="BeforeBuild">
  112. </Target>
  113. <Target Name="AfterBuild">
  114. </Target>
  115. -->
  116. </Project>