CommonStorage.csproj 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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>{5FC4388B-CF9F-4846-A441-018C1CE903AC}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>CommonStorage</RootNamespace>
  11. <AssemblyName>CommonStorage</AssemblyName>
  12. <TargetFrameworkVersion>v4.8</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="BouncyCastle.Crypto">
  35. <HintPath>..\libs\BouncyCastle.Crypto.dll</HintPath>
  36. </Reference>
  37. <Reference Include="EntityFramework">
  38. <HintPath>..\libs\EntityFramework.dll</HintPath>
  39. </Reference>
  40. <Reference Include="EntityFramework.SqlServer">
  41. <HintPath>..\libs\EntityFramework.SqlServer.dll</HintPath>
  42. </Reference>
  43. <Reference Include="Google.Protobuf">
  44. <HintPath>..\libs\Google.Protobuf.dll</HintPath>
  45. </Reference>
  46. <Reference Include="K4os.Compression.LZ4">
  47. <HintPath>..\libs\K4os.Compression.LZ4.dll</HintPath>
  48. </Reference>
  49. <Reference Include="K4os.Compression.LZ4.Streams">
  50. <HintPath>..\libs\K4os.Compression.LZ4.Streams.dll</HintPath>
  51. </Reference>
  52. <Reference Include="K4os.Hash.xxHash">
  53. <HintPath>..\libs\K4os.Hash.xxHash.dll</HintPath>
  54. </Reference>
  55. <Reference Include="MySql.Data">
  56. <HintPath>..\libs\MySql.Data.dll</HintPath>
  57. </Reference>
  58. <Reference Include="MySql.Data.EntityFramework">
  59. <HintPath>..\libs\MySql.Data.EntityFramework.dll</HintPath>
  60. </Reference>
  61. <Reference Include="Newtonsoft.Json">
  62. <HintPath>..\libs\Newtonsoft.Json.dll</HintPath>
  63. </Reference>
  64. <Reference Include="Renci.SshNet">
  65. <HintPath>..\libs\Renci.SshNet.dll</HintPath>
  66. </Reference>
  67. <Reference Include="System" />
  68. <Reference Include="System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
  69. <HintPath>..\libs\System.Buffers.dll</HintPath>
  70. </Reference>
  71. <Reference Include="System.ComponentModel" />
  72. <Reference Include="System.ComponentModel.DataAnnotations" />
  73. <Reference Include="System.Configuration" />
  74. <Reference Include="System.Configuration.Install" />
  75. <Reference Include="System.Core" />
  76. <Reference Include="System.Drawing" />
  77. <Reference Include="System.Drawing.Design" />
  78. <Reference Include="System.Management" />
  79. <Reference Include="System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
  80. <HintPath>..\libs\System.Memory.dll</HintPath>
  81. </Reference>
  82. <Reference Include="System.Numerics" />
  83. <Reference Include="System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  84. <HintPath>..\libs\System.Numerics.Vectors.dll</HintPath>
  85. </Reference>
  86. <Reference Include="System.Runtime.CompilerServices.Unsafe, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  87. <HintPath>..\libs\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
  88. </Reference>
  89. <Reference Include="System.Security" />
  90. <Reference Include="System.Transactions" />
  91. <Reference Include="System.Xml.Linq" />
  92. <Reference Include="System.Data.DataSetExtensions" />
  93. <Reference Include="System.Data" />
  94. <Reference Include="System.Net.Http" />
  95. <Reference Include="System.Xml" />
  96. <Reference Include="ZstdNet">
  97. <HintPath>..\libs\ZstdNet.dll</HintPath>
  98. </Reference>
  99. </ItemGroup>
  100. <ItemGroup>
  101. <Compile Include="DBHelper.cs" />
  102. <Compile Include="Model\AppConfig.cs" />
  103. <Compile Include="Model\ReportConfig.cs" />
  104. <Compile Include="Model\ValueItem.cs" />
  105. <Compile Include="Model\Device.cs" />
  106. <Compile Include="Model\Log.cs" />
  107. <Compile Include="Model\TestData.cs" />
  108. <Compile Include="Model\TpsConfig.cs" />
  109. <Compile Include="Model\User.cs" />
  110. <Compile Include="MyDb.cs" />
  111. <Compile Include="Properties\AssemblyInfo.cs" />
  112. </ItemGroup>
  113. <ItemGroup>
  114. <Content Include="mysql配置参考地址.txt" />
  115. </ItemGroup>
  116. <ItemGroup>
  117. <None Include="App.config" />
  118. <None Include="libman.json" />
  119. </ItemGroup>
  120. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  121. </Project>