2017-01-07 21:54:51 +08:00
|
|
|
|
<?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>{CB591654-0476-40AA-8508-784CF32BE239}</ProjectGuid>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
|
|
|
<RootNamespace>OrmTest</RootNamespace>
|
|
|
|
|
<AssemblyName>OrmTest</AssemblyName>
|
2021-07-10 01:16:48 +08:00
|
|
|
|
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
|
2017-01-07 21:54:51 +08:00
|
|
|
|
<FileAlignment>512</FileAlignment>
|
|
|
|
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
2017-05-22 13:18:00 +08:00
|
|
|
|
<TargetFrameworkProfile />
|
2021-08-20 21:34:12 +08:00
|
|
|
|
<PublishUrl>publish\</PublishUrl>
|
|
|
|
|
<Install>true</Install>
|
|
|
|
|
<InstallFrom>Disk</InstallFrom>
|
|
|
|
|
<UpdateEnabled>false</UpdateEnabled>
|
|
|
|
|
<UpdateMode>Foreground</UpdateMode>
|
|
|
|
|
<UpdateInterval>7</UpdateInterval>
|
|
|
|
|
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
|
|
|
|
|
<UpdatePeriodically>false</UpdatePeriodically>
|
|
|
|
|
<UpdateRequired>false</UpdateRequired>
|
|
|
|
|
<MapFileExtensions>true</MapFileExtensions>
|
|
|
|
|
<ApplicationRevision>0</ApplicationRevision>
|
|
|
|
|
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
|
|
|
|
|
<IsWebBootstrapper>false</IsWebBootstrapper>
|
|
|
|
|
<UseApplicationTrust>false</UseApplicationTrust>
|
|
|
|
|
<BootstrapperEnabled>true</BootstrapperEnabled>
|
2017-01-07 21:54:51 +08:00
|
|
|
|
</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>
|
2019-05-08 15:20:33 +08:00
|
|
|
|
<Prefer32Bit>false</Prefer32Bit>
|
2022-06-25 22:14:39 +08:00
|
|
|
|
<DocumentationFile>
|
|
|
|
|
</DocumentationFile>
|
2017-01-07 21:54:51 +08:00
|
|
|
|
</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>
|
2019-05-08 15:20:33 +08:00
|
|
|
|
<Prefer32Bit>false</Prefer32Bit>
|
2017-01-07 21:54:51 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="System" />
|
2018-11-10 15:07:49 +08:00
|
|
|
|
<Reference Include="System.ComponentModel.DataAnnotations" />
|
2017-01-07 21:54:51 +08:00
|
|
|
|
<Reference Include="System.Core" />
|
2018-11-10 15:07:49 +08:00
|
|
|
|
<Reference Include="System.Data.Linq" />
|
2017-01-07 21:54:51 +08:00
|
|
|
|
<Reference Include="System.Xml.Linq" />
|
|
|
|
|
<Reference Include="System.Data.DataSetExtensions" />
|
|
|
|
|
<Reference Include="Microsoft.CSharp" />
|
|
|
|
|
<Reference Include="System.Data" />
|
|
|
|
|
<Reference Include="System.Xml" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2019-05-20 17:20:36 +08:00
|
|
|
|
<Compile Include="Demo\Demo2_Updateable.cs" />
|
2019-05-20 17:32:13 +08:00
|
|
|
|
<Compile Include="Demo\Demo3_Insertable.cs" />
|
2019-05-20 17:39:19 +08:00
|
|
|
|
<Compile Include="Demo\Demo4_Deleteable.cs" />
|
2019-05-20 17:58:18 +08:00
|
|
|
|
<Compile Include="Demo\Demo5_SqlQueryable.cs" />
|
2019-05-20 18:00:14 +08:00
|
|
|
|
<Compile Include="Demo\Demo6_Queue.cs" />
|
2019-06-02 15:31:27 +08:00
|
|
|
|
<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" />
|
2019-05-06 21:38:27 +08:00
|
|
|
|
<Compile Include="Demo\DemoC_GobalFilter.cs" />
|
|
|
|
|
<Compile Include="Demo\Demo1_Queryable.cs" />
|
2019-05-06 19:52:07 +08:00
|
|
|
|
<Compile Include="Demo\DemoD_DbFirst.cs" />
|
2019-05-07 13:17:27 +08:00
|
|
|
|
<Compile Include="Demo\DemoE_CodeFirst.cs" />
|
2019-06-02 15:31:27 +08:00
|
|
|
|
<Compile Include="Demo\DemoF_Utilities.cs" />
|
|
|
|
|
<Compile Include="Demo\DemoG_SimpleClient.cs" />
|
2021-04-24 17:20:15 +08:00
|
|
|
|
<Compile Include="Demo\DemoH_Tenant.cs" />
|
2021-07-03 21:56:51 +08:00
|
|
|
|
<Compile Include="Demo\DemoJ_Report.cs" />
|
2021-07-31 21:14:48 +08:00
|
|
|
|
<Compile Include="Demo\DemoL_Snowflake.cs" />
|
2021-08-28 22:30:33 +08:00
|
|
|
|
<Compile Include="Demo\DemoM_UnitOfWork.cs" />
|
2021-10-20 13:59:50 +08:00
|
|
|
|
<Compile Include="Demo\DemoN_SplitTable.cs" />
|
2021-04-25 20:37:18 +08:00
|
|
|
|
<Compile Include="Models\DataDictionary.cs" />
|
2019-05-09 17:55:11 +08:00
|
|
|
|
<Compile Include="Models\Custom.cs" />
|
2022-05-03 15:36:55 +08:00
|
|
|
|
<Compile Include="Models\DiffLong.cs" />
|
2019-06-04 12:30:21 +08:00
|
|
|
|
<Compile Include="Models\EntityMapper.cs" />
|
2019-06-02 10:31:00 +08:00
|
|
|
|
<Compile Include="Models\Mapper.cs" />
|
2020-10-25 18:59:46 +08:00
|
|
|
|
<Compile Include="Models\SubInsertTest.cs" />
|
2019-06-02 09:54:15 +08:00
|
|
|
|
<Compile Include="Models\Tree.cs" />
|
|
|
|
|
<Compile Include="Models\AttributeTable.cs" />
|
2019-05-05 16:12:29 +08:00
|
|
|
|
<Compile Include="Models\Order.cs" />
|
|
|
|
|
<Compile Include="Models\OrderItem.cs" />
|
2019-05-06 21:38:27 +08:00
|
|
|
|
<Compile Include="Demo\Demo0_SqlSugarClient.cs" />
|
2019-05-09 17:55:11 +08:00
|
|
|
|
<Compile Include="Models\ViewOrder.cs" />
|
2022-12-01 23:22:05 +08:00
|
|
|
|
<Compile Include="UnitTest\UnitSubToList.cs" />
|
2022-10-10 13:14:32 +08:00
|
|
|
|
<Compile Include="UnitTest\Models\EntityBase.cs" />
|
2022-11-14 01:29:13 +08:00
|
|
|
|
<Compile Include="UnitTest\UnitByteArray.cs" />
|
2022-10-10 13:14:32 +08:00
|
|
|
|
<Compile Include="UnitTest\UnitInsertNavOneToOne.cs" />
|
|
|
|
|
<Compile Include="UnitTest\Models\SysField.cs" />
|
|
|
|
|
<Compile Include="UnitTest\Models\SysFormField.cs" />
|
|
|
|
|
<Compile Include="UnitTest\Models\SysFormFieldInput.cs" />
|
|
|
|
|
<Compile Include="UnitTest\Models\SysFormUpload.cs" />
|
2022-10-10 12:49:25 +08:00
|
|
|
|
<Compile Include="UnitTest\UnitUpdateNavOneToOne.cs" />
|
2022-10-04 23:20:18 +08:00
|
|
|
|
<Compile Include="UnitTest\CrossDatabase01.cs" />
|
|
|
|
|
<Compile Include="UnitTest\CrossDatabase02.cs" />
|
|
|
|
|
<Compile Include="UnitTest\CrossDatabase03.cs" />
|
2022-09-21 11:27:50 +08:00
|
|
|
|
<Compile Include="UnitTest\UInsertNav0adsf.cs" />
|
2022-09-19 19:42:42 +08:00
|
|
|
|
<Compile Include="UnitTest\ITestExo.cs" />
|
|
|
|
|
<Compile Include="UnitTest\UExp.cs" />
|
2022-09-10 20:36:04 +08:00
|
|
|
|
<Compile Include="UnitTest\UCustom24.cs" />
|
2022-08-31 13:22:39 +08:00
|
|
|
|
<Compile Include="UnitTest\UCustom20.cs" />
|
2022-08-25 22:02:43 +08:00
|
|
|
|
<Compile Include="UnitTest\UnitUpdateSubQuery.cs" />
|
2022-08-25 20:52:37 +08:00
|
|
|
|
<Compile Include="UnitTest\UnitManyToManyDeleteNav.cs" />
|
2022-08-17 15:53:47 +08:00
|
|
|
|
<Compile Include="UnitTest\UnitCustom12312.cs" />
|
2022-08-15 18:58:15 +08:00
|
|
|
|
<Compile Include="UnitTest\UnitEnum22.cs" />
|
2022-08-10 14:07:15 +08:00
|
|
|
|
<Compile Include="UnitTest\UCustom025.cs" />
|
|
|
|
|
<Compile Include="UnitTest\Models\ImsBillDtl.cs" />
|
|
|
|
|
<Compile Include="UnitTest\Models\ImsBillDtlStk.cs" />
|
|
|
|
|
<Compile Include="UnitTest\Models\ImsBillMst.cs" />
|
|
|
|
|
<Compile Include="UnitTest\Models\ImsBillStk.cs" />
|
2022-08-05 15:06:01 +08:00
|
|
|
|
<Compile Include="UnitTest\UnitSub.cs" />
|
2022-08-05 23:57:23 +08:00
|
|
|
|
<Compile Include="UnitTest\UnitTestConfigQuery.cs" />
|
2022-08-23 23:29:23 +08:00
|
|
|
|
<Compile Include="UnitTest\UnitTestReturnPkList.cs" />
|
2022-08-05 08:55:21 +08:00
|
|
|
|
<Compile Include="UnitTest\UnitUpdateNavN3.cs" />
|
2022-08-04 11:57:16 +08:00
|
|
|
|
<Compile Include="UnitTest\UnitOneToOne12.cs" />
|
|
|
|
|
<Compile Include="UnitTest\Models\poetry_video_comment.cs" />
|
|
|
|
|
<Compile Include="UnitTest\Models\user_name_simple.cs" />
|
2022-08-03 10:44:33 +08:00
|
|
|
|
<Compile Include="UnitTest\UnitInsertNav3.cs" />
|
2022-08-02 22:25:33 +08:00
|
|
|
|
<Compile Include="UnitTest\UnitInsertNav2.cs" />
|
2022-08-02 22:10:00 +08:00
|
|
|
|
<Compile Include="UnitTest\UnitInsertNav.cs" />
|
2022-08-02 20:56:02 +08:00
|
|
|
|
<Compile Include="UnitTest\UnitSelectN.cs" />
|
2022-08-01 16:38:23 +08:00
|
|
|
|
<Compile Include="UnitTest\UnitOneToOneN2.cs" />
|
2022-07-30 18:04:29 +08:00
|
|
|
|
<Compile Include="UnitTest\UnitManyToManyUpdate.cs" />
|
2022-07-28 17:23:00 +08:00
|
|
|
|
<Compile Include="UnitTest\UnitManyToMay1231.cs" />
|
2022-07-26 21:34:38 +08:00
|
|
|
|
<Compile Include="UnitTest\UnitOneToOneN.cs" />
|
2022-06-24 14:44:34 +08:00
|
|
|
|
<Compile Include="UnitTest\UCustom024.cs" />
|
2022-06-09 19:52:26 +08:00
|
|
|
|
<Compile Include="UnitTest\UCustomNavigate01.cs" />
|
2022-06-07 19:40:05 +08:00
|
|
|
|
<Compile Include="UnitTest\Models\DSPersonScheduleModel.cs" />
|
|
|
|
|
<Compile Include="UnitTest\Models\PersonScheduleParam.cs" />
|
|
|
|
|
<Compile Include="UnitTest\Models\T_BAS_AIRPORT.cs" />
|
|
|
|
|
<Compile Include="UnitTest\Models\V_PERSON_SCHEDULE_A.cs" />
|
|
|
|
|
<Compile Include="UnitTest\UCustom023.cs" />
|
2022-05-30 14:14:35 +08:00
|
|
|
|
<Compile Include="UnitTest\UCustom22.cs" />
|
2022-05-19 16:06:17 +08:00
|
|
|
|
<Compile Include="UnitTest\UCustom021.cs" />
|
2022-05-13 20:36:37 +08:00
|
|
|
|
<Compile Include="UnitTest\UByteArray.cs" />
|
2022-05-13 14:10:33 +08:00
|
|
|
|
<Compile Include="UnitTest\UIncludesBigData.cs" />
|
2022-05-10 10:02:35 +08:00
|
|
|
|
<Compile Include="UnitTest\UCustom020.cs" />
|
2022-05-07 10:58:27 +08:00
|
|
|
|
<Compile Include="UnitTest\UCustom019.cs" />
|
2022-04-29 18:50:58 +08:00
|
|
|
|
<Compile Include="UnitTest\UintDynamic.cs" />
|
2022-07-24 16:57:35 +08:00
|
|
|
|
<Compile Include="UnitTest\ULock.cs" />
|
2022-06-27 21:32:08 +08:00
|
|
|
|
<Compile Include="UnitTest\UNavDynamic111N.cs" />
|
2022-07-04 10:27:59 +08:00
|
|
|
|
<Compile Include="UnitTest\UnitManyToMany2.cs" />
|
2022-04-25 13:50:27 +08:00
|
|
|
|
<Compile Include="UnitTest\UnitManyToMany.cs" />
|
2022-04-17 19:05:28 +08:00
|
|
|
|
<Compile Include="UnitTest\UCustom018.cs" />
|
2022-01-09 17:55:55 +08:00
|
|
|
|
<Compile Include="UnitTest\Models\Order.cs" />
|
2022-01-10 16:12:47 +08:00
|
|
|
|
<Compile Include="UnitTest\Models\RoleEntity.cs" />
|
2022-01-07 13:28:38 +08:00
|
|
|
|
<Compile Include="UnitTest\Models\TestModel.cs" />
|
2022-01-10 16:12:47 +08:00
|
|
|
|
<Compile Include="UnitTest\Models\UserEntity.cs" />
|
|
|
|
|
<Compile Include="UnitTest\Models\UserRoleEntity.cs" />
|
2022-04-15 23:52:19 +08:00
|
|
|
|
<Compile Include="UnitTest\UCustom017.cs" />
|
2022-04-14 17:22:14 +08:00
|
|
|
|
<Compile Include="UnitTest\UCustom016.cs" />
|
2022-04-13 22:28:06 +08:00
|
|
|
|
<Compile Include="UnitTest\UCustom015.cs" />
|
2022-04-13 21:45:20 +08:00
|
|
|
|
<Compile Include="UnitTest\UCustom014.cs" />
|
2022-04-12 16:27:23 +08:00
|
|
|
|
<Compile Include="UnitTest\UCustom013.cs" />
|
2021-12-24 20:11:23 +08:00
|
|
|
|
<Compile Include="UnitTest\UCustom01.cs" />
|
2022-04-10 01:00:02 +08:00
|
|
|
|
<Compile Include="UnitTest\UCustom012.cs" />
|
2022-03-26 10:02:29 +08:00
|
|
|
|
<Compile Include="UnitTest\UCustom09.cs" />
|
2022-03-23 10:32:39 +08:00
|
|
|
|
<Compile Include="UnitTest\UCustom011.cs" />
|
2021-12-25 14:25:48 +08:00
|
|
|
|
<Compile Include="UnitTest\UCustom02.cs" />
|
2021-12-25 20:28:38 +08:00
|
|
|
|
<Compile Include="UnitTest\UCustom03.cs" />
|
2022-03-16 21:38:14 +08:00
|
|
|
|
<Compile Include="UnitTest\UCustom010.cs" />
|
2022-03-16 13:47:04 +08:00
|
|
|
|
<Compile Include="UnitTest\UCustom08.cs" />
|
2022-03-04 14:19:41 +08:00
|
|
|
|
<Compile Include="UnitTest\UCustom07.cs" />
|
2022-01-18 11:42:19 +08:00
|
|
|
|
<Compile Include="UnitTest\UCustom06.cs" />
|
2022-01-09 14:39:11 +08:00
|
|
|
|
<Compile Include="UnitTest\UCustom05.cs" />
|
2022-01-05 20:06:33 +08:00
|
|
|
|
<Compile Include="UnitTest\UCustom04.cs" />
|
2021-12-01 13:45:22 +08:00
|
|
|
|
<Compile Include="UnitTest\UDelete.cs" />
|
2021-11-23 17:37:37 +08:00
|
|
|
|
<Compile Include="UnitTest\UFastest.cs" />
|
2021-12-16 01:45:54 +08:00
|
|
|
|
<Compile Include="UnitTest\UConfig.cs" />
|
2022-07-26 22:27:10 +08:00
|
|
|
|
<Compile Include="UnitTest\UnitUpdateNav2.cs" />
|
2022-07-26 22:24:02 +08:00
|
|
|
|
<Compile Include="UnitTest\UnitUpdateNav.cs" />
|
2022-07-04 06:41:17 +08:00
|
|
|
|
<Compile Include="UnitTest\UOneManyMany5.cs" />
|
2022-07-03 04:37:53 +08:00
|
|
|
|
<Compile Include="UnitTest\UOneManyMany4.cs" />
|
2022-07-03 04:23:35 +08:00
|
|
|
|
<Compile Include="UnitTest\UOneManyMany3.cs" />
|
|
|
|
|
<Compile Include="UnitTest\UOneManyMany2.cs" />
|
2022-07-03 01:00:09 +08:00
|
|
|
|
<Compile Include="UnitTest\UOneManyMany.cs" />
|
2022-09-17 13:57:23 +08:00
|
|
|
|
<Compile Include="UnitTest\USelectSinleDTO.cs" />
|
2021-10-31 12:34:35 +08:00
|
|
|
|
<Compile Include="UnitTest\USplit.cs" />
|
2021-09-24 21:29:39 +08:00
|
|
|
|
<Compile Include="UnitTest\Models\TB_AdminUser.cs" />
|
|
|
|
|
<Compile Include="UnitTest\Models\TB_ClientConfig.cs" />
|
2021-07-31 19:46:56 +08:00
|
|
|
|
<Compile Include="UnitTest\UAopTest.cs" />
|
2021-12-25 11:48:02 +08:00
|
|
|
|
<Compile Include="UnitTest\USubquery.cs" />
|
2021-07-31 19:46:56 +08:00
|
|
|
|
<Compile Include="UnitTest\UTest01.cs" />
|
2021-01-27 03:49:53 +08:00
|
|
|
|
<Compile Include="UnitTest\UEnum.cs" />
|
2021-01-30 17:23:41 +08:00
|
|
|
|
<Compile Include="UnitTest\UFilter.cs" />
|
2021-03-02 19:58:42 +08:00
|
|
|
|
<Compile Include="UnitTest\UInsert2.cs" />
|
2020-12-20 00:14:33 +08:00
|
|
|
|
<Compile Include="UnitTest\UInsert.cs" />
|
|
|
|
|
<Compile Include="UnitTest\UQueryable2.cs" />
|
2019-06-09 20:14:39 +08:00
|
|
|
|
<Compile Include="UnitTest\UQueue.cs" />
|
2021-01-16 16:28:15 +08:00
|
|
|
|
<Compile Include="UnitTest\UTran.cs" />
|
2019-05-23 19:25:51 +08:00
|
|
|
|
<Compile Include="Models\TestTree.cs" />
|
2017-03-04 00:54:19 +08:00
|
|
|
|
<Compile Include="Config.cs" />
|
2017-01-07 21:54:51 +08:00
|
|
|
|
<Compile Include="Program.cs" />
|
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
2019-05-26 17:07:09 +08:00
|
|
|
|
<Compile Include="UnitTest\UCodeFirst.cs" />
|
2019-05-19 11:36:49 +08:00
|
|
|
|
<Compile Include="UnitTest\UAdo.cs" />
|
2019-05-21 09:55:24 +08:00
|
|
|
|
<Compile Include="UnitTest\Updateable.cs" />
|
2019-05-20 16:15:01 +08:00
|
|
|
|
<Compile Include="UnitTest\UQueryable.cs" />
|
2019-05-19 18:10:12 +08:00
|
|
|
|
<Compile Include="UnitTest\UQueryableAsync.cs" />
|
2019-05-19 09:14:04 +08:00
|
|
|
|
<Compile Include="UnitTest\UThread3.cs" />
|
|
|
|
|
<Compile Include="UnitTest\UThread2.cs" />
|
2022-08-30 01:42:16 +08:00
|
|
|
|
<Compile Include="UnitTest\UTran2.cs" />
|
2019-05-18 10:56:33 +08:00
|
|
|
|
<Compile Include="UnitTest\UValidate.cs" />
|
2019-05-16 20:25:11 +08:00
|
|
|
|
<Compile Include="UnitTest\UJson.cs" />
|
2019-05-07 09:12:38 +08:00
|
|
|
|
<Compile Include="UnitTest\Main.cs" />
|
2019-05-18 10:55:28 +08:00
|
|
|
|
<Compile Include="UnitTest\UThread.cs" />
|
2017-01-07 21:54:51 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\SqlSugar\SqlSugar.csproj">
|
|
|
|
|
<Project>{489bb790-226c-4fad-8d1e-51d72a7ff8e5}</Project>
|
|
|
|
|
<Name>SqlSugar</Name>
|
|
|
|
|
</ProjectReference>
|
|
|
|
|
</ItemGroup>
|
2017-09-13 13:21:26 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
|
2017-05-22 00:30:39 +08:00
|
|
|
|
</ItemGroup>
|
2019-05-08 15:20:33 +08:00
|
|
|
|
<ItemGroup>
|
2019-05-08 16:03:40 +08:00
|
|
|
|
<None Include="app.config">
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
</None>
|
2019-05-08 15:20:33 +08:00
|
|
|
|
</ItemGroup>
|
2022-05-13 14:10:33 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="UnitTest\Sql\UIncludesBigData.sql" />
|
2022-10-10 12:49:25 +08:00
|
|
|
|
<Content Include="UnitTest\Sql\UnitUpdateNavOneToOne.sql" />
|
2022-05-13 14:10:33 +08:00
|
|
|
|
</ItemGroup>
|
2021-08-20 21:34:12 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<BootstrapperPackage Include=".NETFramework,Version=v4.6">
|
|
|
|
|
<Visible>False</Visible>
|
|
|
|
|
<ProductName>Microsoft .NET Framework 4.6 %28x86 和 x64%29</ProductName>
|
|
|
|
|
<Install>true</Install>
|
|
|
|
|
</BootstrapperPackage>
|
|
|
|
|
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
|
|
|
|
|
<Visible>False</Visible>
|
|
|
|
|
<ProductName>.NET Framework 3.5 SP1</ProductName>
|
|
|
|
|
<Install>false</Install>
|
|
|
|
|
</BootstrapperPackage>
|
|
|
|
|
</ItemGroup>
|
2017-01-07 21:54:51 +08:00
|
|
|
|
<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>
|