123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProjectGuid>{5FC4388B-CF9F-4846-A441-018C1CE903AC}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>CommonStorage</RootNamespace>
- <AssemblyName>CommonStorage</AssemblyName>
- <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
- <FileAlignment>512</FileAlignment>
- <Deterministic>true</Deterministic>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\Release\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="BouncyCastle.Crypto">
- <HintPath>..\libs\BouncyCastle.Crypto.dll</HintPath>
- </Reference>
- <Reference Include="EntityFramework">
- <HintPath>..\libs\EntityFramework.dll</HintPath>
- </Reference>
- <Reference Include="EntityFramework.SqlServer">
- <HintPath>..\libs\EntityFramework.SqlServer.dll</HintPath>
- </Reference>
- <Reference Include="Google.Protobuf">
- <HintPath>..\libs\Google.Protobuf.dll</HintPath>
- </Reference>
- <Reference Include="K4os.Compression.LZ4">
- <HintPath>..\libs\K4os.Compression.LZ4.dll</HintPath>
- </Reference>
- <Reference Include="K4os.Compression.LZ4.Streams">
- <HintPath>..\libs\K4os.Compression.LZ4.Streams.dll</HintPath>
- </Reference>
- <Reference Include="K4os.Hash.xxHash">
- <HintPath>..\libs\K4os.Hash.xxHash.dll</HintPath>
- </Reference>
- <Reference Include="MySql.Data">
- <HintPath>..\libs\MySql.Data.dll</HintPath>
- </Reference>
- <Reference Include="MySql.Data.EntityFramework">
- <HintPath>..\libs\MySql.Data.EntityFramework.dll</HintPath>
- </Reference>
- <Reference Include="Newtonsoft.Json">
- <HintPath>..\libs\Newtonsoft.Json.dll</HintPath>
- </Reference>
- <Reference Include="Renci.SshNet">
- <HintPath>..\libs\Renci.SshNet.dll</HintPath>
- </Reference>
- <Reference Include="System" />
- <Reference Include="System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
- <HintPath>..\libs\System.Buffers.dll</HintPath>
- </Reference>
- <Reference Include="System.ComponentModel" />
- <Reference Include="System.ComponentModel.DataAnnotations" />
- <Reference Include="System.Configuration" />
- <Reference Include="System.Configuration.Install" />
- <Reference Include="System.Core" />
- <Reference Include="System.Drawing" />
- <Reference Include="System.Drawing.Design" />
- <Reference Include="System.Management" />
- <Reference Include="System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
- <HintPath>..\libs\System.Memory.dll</HintPath>
- </Reference>
- <Reference Include="System.Numerics" />
- <Reference Include="System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
- <HintPath>..\libs\System.Numerics.Vectors.dll</HintPath>
- </Reference>
- <Reference Include="System.Runtime.CompilerServices.Unsafe, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
- <HintPath>..\libs\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
- </Reference>
- <Reference Include="System.Security" />
- <Reference Include="System.Transactions" />
- <Reference Include="System.Xml.Linq" />
- <Reference Include="System.Data.DataSetExtensions" />
- <Reference Include="System.Data" />
- <Reference Include="System.Net.Http" />
- <Reference Include="System.Xml" />
- <Reference Include="ZstdNet">
- <HintPath>..\libs\ZstdNet.dll</HintPath>
- </Reference>
- </ItemGroup>
- <ItemGroup>
- <Compile Include="DBHelper.cs" />
- <Compile Include="Model\AppConfig.cs" />
- <Compile Include="Model\ReportConfig.cs" />
- <Compile Include="Model\ValueItem.cs" />
- <Compile Include="Model\Device.cs" />
- <Compile Include="Model\Log.cs" />
- <Compile Include="Model\TestData.cs" />
- <Compile Include="Model\TpsConfig.cs" />
- <Compile Include="Model\User.cs" />
- <Compile Include="MyDb.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="mysql配置参考地址.txt" />
- </ItemGroup>
- <ItemGroup>
- <None Include="App.config" />
- <None Include="libman.json" />
- </ItemGroup>
- <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
- </Project>
|