SqlSugar/Src/Asp.Net/SqlServerTest/SqlServerTest.csproj

128 lines
5.5 KiB
XML
Raw Normal View History

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>
2019-05-09 12:56:26 +08:00
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
2017-01-07 21:54:51 +08:00
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
2017-05-22 13:18:00 +08:00
<TargetFrameworkProfile />
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>
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>
2017-04-24 01:31:37 +08:00
<Reference Include="SyntacticSugar, Version=2.4.1.0, Culture=neutral, processorArchitecture=MSIL">
2017-05-22 13:16:01 +08:00
<SpecificVersion>False</SpecificVersion>
<HintPath>OtherDll\SyntacticSugar.dll</HintPath>
2017-04-24 01:31:37 +08:00
</Reference>
2017-01-07 21:54:51 +08:00
<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" />
2019-05-09 17:55:11 +08:00
<Compile Include="Models\Custom.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" />
2021-01-04 14:59:26 +08:00
<Compile Include="UnitTest\Test01.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" />
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" />
<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" />
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>
2020-12-29 13:06:45 +08:00
<ItemGroup>
<Folder Include="UnitTest\models\" />
</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>