SqlSugar源码
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.

185 lines
9.6 KiB

8 years ago
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" 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>{B72FC095-9AFA-4375-AF14-402339BAF1DF}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>MySqlTest</RootNamespace>
<AssemblyName>MySqlTest</AssemblyName>
3 years ago
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
8 years ago
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
6 years ago
<TargetFrameworkProfile />
8 years ago
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<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' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<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, Version=1.9.0.0, Culture=neutral, PublicKeyToken=0e99375e54769942, processorArchitecture=MSIL">
<HintPath>..\packages\Portable.BouncyCastle.1.9.0\lib\net40\BouncyCastle.Crypto.dll</HintPath>
</Reference>
<Reference Include="Google.Protobuf, Version=3.19.4.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL">
<HintPath>..\packages\Google.Protobuf.3.19.4\lib\net45\Google.Protobuf.dll</HintPath>
</Reference>
<Reference Include="K4os.Compression.LZ4, Version=1.2.6.0, Culture=neutral, PublicKeyToken=2186fa9121ef231d, processorArchitecture=MSIL">
<HintPath>..\packages\K4os.Compression.LZ4.1.2.6\lib\net46\K4os.Compression.LZ4.dll</HintPath>
</Reference>
<Reference Include="K4os.Compression.LZ4.Streams, Version=1.2.6.0, Culture=neutral, PublicKeyToken=2186fa9121ef231d, processorArchitecture=MSIL">
<HintPath>..\packages\K4os.Compression.LZ4.Streams.1.2.6\lib\net46\K4os.Compression.LZ4.Streams.dll</HintPath>
</Reference>
<Reference Include="K4os.Hash.xxHash, Version=1.0.6.0, Culture=neutral, PublicKeyToken=32cd54395057cec3, processorArchitecture=MSIL">
<HintPath>..\packages\K4os.Hash.xxHash.1.0.6\lib\net46\K4os.Hash.xxHash.dll</HintPath>
</Reference>
1 year ago
<Reference Include="MySql.Data, Version=8.0.31.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL">
<HintPath>..\packages\MySql.Data.8.0.31\lib\net452\MySql.Data.dll</HintPath>
</Reference>
8 years ago
<Reference Include="System" />
<Reference Include="System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\packages\System.Buffers.4.5.1\lib\netstandard1.1\System.Buffers.dll</HintPath>
</Reference>
6 years ago
<Reference Include="System.ComponentModel.DataAnnotations" />
<Reference Include="System.Configuration" />
<Reference Include="System.Configuration.Install" />
8 years ago
<Reference Include="System.Core" />
<Reference Include="System.Management" />
<Reference Include="System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\packages\System.Memory.4.5.4\lib\netstandard1.1\System.Memory.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.CompilerServices.Unsafe, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Runtime.CompilerServices.Unsafe.5.0.0\lib\net45\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
</Reference>
<Reference Include="System.Transactions" />
8 years ago
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
<Reference Include="ZstdNet, Version=1.4.5.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d, processorArchitecture=MSIL">
<HintPath>..\packages\MySql.Data.8.0.31\lib\net452\ZstdNet.dll</HintPath>
</Reference>
8 years ago
</ItemGroup>
<ItemGroup>
<Compile Include="Config.cs" />
4 years ago
<Compile Include="Bugs\BugTest1.cs" />
6 years ago
<Compile Include="Demo\Demo0_SqlSugarClient.cs" />
<Compile Include="Demo\Demo1_Queryable.cs" />
<Compile Include="Demo\Demo2_Updateable.cs" />
<Compile Include="Demo\Demo3_Insertable.cs" />
<Compile Include="Demo\Demo4_Deleteable.cs" />
<Compile Include="Demo\Demo5_SqlQueryable.cs" />
<Compile Include="Demo\Demo6_Queue.cs" />
6 years ago
<Compile Include="Demo\Demo7_Ado.cs" />
<Compile Include="Demo\Demo8_Saveable.cs" />
<Compile Include="Demo\Demo9_EntityMain.cs" />
<Compile Include="Demo\DemoA_DbMain.cs" />
<Compile Include="Demo\DemoB_Aop.cs" />
6 years ago
<Compile Include="Demo\Democ_GobalFilter.cs" />
<Compile Include="Demo\DemoD_DbFirst.cs" />
<Compile Include="Demo\DemoE_CodeFirst.cs" />
6 years ago
<Compile Include="Demo\DemoF_Utilities.cs" />
<Compile Include="Demo\DemoG_SimpleClient.cs" />
3 years ago
<Compile Include="Demo\DemoN_SplitTable.cs" />
<Compile Include="Demo\DemoO_Fastest.cs" />
6 years ago
<Compile Include="Models\AttributeTable.cs" />
6 years ago
<Compile Include="Models\CarType.cs" />
<Compile Include="Models\Custom.cs" />
6 years ago
<Compile Include="Models\EntityMapper.cs" />
<Compile Include="Models\Mapper.cs" />
6 years ago
<Compile Include="Models\MyCustomAttributeTable.cs" />
<Compile Include="Models\Order.cs" />
<Compile Include="Models\OrderItem.cs" />
6 years ago
<Compile Include="Models\TestTree.cs" />
<Compile Include="Models\Tree.cs" />
4 years ago
<Compile Include="Models\Unit\Custom1\EGoods.cs" />
<Compile Include="Models\Unit\Custom1\EGoodsBrand.cs" />
<Compile Include="Models\Unit\Custom1\EGoodsClass.cs" />
<Compile Include="Models\Unit\Custom1\EOrderAlbaran.cs" />
<Compile Include="Models\Unit\Custom1\EOrderAlbaranDetail.cs" />
<Compile Include="Models\Unit\Custom1\EOrderReturn.cs" />
<Compile Include="Models\Unit\Custom1\EOrderReturnDetail.cs" />
<Compile Include="Models\Unit\Custom1\PurchaseDetailModel.cs" />
6 years ago
<Compile Include="Models\ViewOrder.cs" />
3 years ago
<Compile Include="Demo\DemoJ_Report.cs" />
2 years ago
<Compile Include="UnitTest\SubToList002.cs" />
2 years ago
<Compile Include="UnitTest\UnitDateTimeOffset.cs" />
2 years ago
<Compile Include="UnitTest\UinitCustomConvert.cs" />
2 years ago
<Compile Include="UnitTest\Unitadsfasf1.cs" />
2 years ago
<Compile Include="UnitTest\CrossDatabase02.cs" />
2 years ago
<Compile Include="UnitTest\Models\BilPayment.cs" />
<Compile Include="UnitTest\Models\BilSupplierbalancerecord.cs" />
2 years ago
<Compile Include="UnitTest\UCustom20.cs" />
2 years ago
<Compile Include="UnitTest\UBulkCopy2.cs" />
2 years ago
<Compile Include="UnitTest\UCustom07.cs" />
2 years ago
<Compile Include="UnitTest\UDelete.cs" />
3 years ago
<Compile Include="UnitTest\UBulkCopy.cs" />
3 years ago
<Compile Include="UnitTest\UCustom011.cs" />
3 years ago
<Compile Include="UnitTest\UCustom012.cs" />
<Compile Include="UnitTest\UCustom014.cs" />
<Compile Include="UnitTest\UCustom015.cs" />
3 years ago
<Compile Include="UnitTest\UCustom06.cs" />
4 years ago
<Compile Include="UnitTest\UInsert.cs" />
2 years ago
<Compile Include="UnitTest\UInsert3.cs" />
3 years ago
<Compile Include="UnitTest\UnitCustom01.cs" />
2 years ago
<Compile Include="UnitTest\UnitSameKeyBug.cs" />
2 years ago
<Compile Include="UnitTest\UnitSqlFunc.cs" />
2 years ago
<Compile Include="UnitTest\UnitSubToList.cs" />
2 years ago
<Compile Include="UnitTest\UnitSubToList001.cs" />
2 years ago
<Compile Include="UnitTest\UnitTestReturnPkList.cs" />
2 years ago
<Compile Include="UnitTest\UOneManyMany.cs" />
6 years ago
<Compile Include="UnitTest\UQueue.cs" />
8 years ago
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
6 years ago
<Compile Include="UnitTest\Main.cs" />
<Compile Include="UnitTest\UAdo.cs" />
<Compile Include="UnitTest\UCodeFirst.cs" />
6 years ago
<Compile Include="UnitTest\UJson.cs" />
<Compile Include="UnitTest\Updateable.cs" />
<Compile Include="UnitTest\UQueryable.cs" />
<Compile Include="UnitTest\UQueryableAsync.cs" />
<Compile Include="UnitTest\UThread.cs" />
<Compile Include="UnitTest\UThread2.cs" />
<Compile Include="UnitTest\UThread3.cs" />
<Compile Include="UnitTest\UValidate.cs" />
8 years ago
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
<None Include="packages.config" />
8 years ago
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SqlSugar\SqlSugar.csproj">
<Project>{489bb790-226c-4fad-8d1e-51d72a7ff8e5}</Project>
<Name>SqlSugar</Name>
</ProjectReference>
</ItemGroup>
7 years ago
<ItemGroup>
<Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
8 years ago
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>