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.

152 lines
7.0 KiB

7 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>{4177D054-D113-4F8A-9E01-642E072F9C87}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>OracleTest</RootNamespace>
<AssemblyName>OracleTest</AssemblyName>
6 years ago
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
7 years ago
<FileAlignment>512</FileAlignment>
6 years ago
<TargetFrameworkProfile />
7 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>
6 years ago
<Prefer32Bit>false</Prefer32Bit>
7 years ago
</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>
6 years ago
<Prefer32Bit>false</Prefer32Bit>
7 years ago
</PropertyGroup>
<ItemGroup>
7 years ago
<Reference Include="SyntacticSugar, Version=2.4.1.0, Culture=neutral, processorArchitecture=MSIL" />
7 years ago
<Reference Include="System" />
6 years ago
<Reference Include="System.ComponentModel.DataAnnotations" />
7 years ago
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Config.cs" />
6 years ago
<Compile Include="Demo\Demo0_SqlSugarClient.cs" />
6 years ago
<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" />
<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" />
<Compile Include="Demo\Democ_GobalFilter.cs" />
<Compile Include="Demo\DemoD_DbFirst.cs" />
<Compile Include="Demo\DemoE_CodeFirst.cs" />
<Compile Include="Demo\DemoF_Utilities.cs" />
<Compile Include="Demo\DemoG_SimpleClient.cs" />
<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" />
<Compile Include="Models\TestTree.cs" />
6 years ago
<Compile Include="Models\Tree.cs" />
6 years ago
<Compile Include="Models\ViewOrder.cs" />
<Compile Include="OldTest\Demos\1_Query.cs" />
<Compile Include="OldTest\Demos\2_Update.cs" />
<Compile Include="OldTest\Demos\3_Insert.cs" />
<Compile Include="OldTest\Demos\4_Delete.cs" />
<Compile Include="OldTest\Demos\5_CodeFirst.cs" />
<Compile Include="OldTest\Demos\5_DbFirst.cs" />
<Compile Include="OldTest\Demos\6_ComplexModel.cs" />
<Compile Include="OldTest\Demos\7_Filter.cs" />
<Compile Include="OldTest\Demos\8_JoinSql.cs" />
<Compile Include="OldTest\Demos\DemoBase.cs" />
<Compile Include="OldTest\Models\DataTestInfo.cs" />
<Compile Include="OldTest\Models\DataTestInfo2.cs" />
<Compile Include="OldTest\Models\Enum.cs" />
<Compile Include="OldTest\Models\School.cs" />
<Compile Include="OldTest\Models\Student.cs" />
<Compile Include="OldTest\Models\ViewModelStudent.cs" />
<Compile Include="OldTest\PerformanceTesting\PerformanceBase.cs" />
<Compile Include="OldTest\PerformanceTesting\SqlSugarPerformance.cs" />
<Compile Include="OldTest\Program.cs" />
7 years ago
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
6 years ago
<Compile Include="OldTest\UnitTest\DataTest.cs" />
<Compile Include="OldTest\UnitTest\Delete.cs" />
<Compile Include="OldTest\UnitTest\EnumTest.cs" />
<Compile Include="OldTest\UnitTest\ExpressionTest\Field.cs" />
<Compile Include="OldTest\UnitTest\ExpressionTest\Method.cs" />
<Compile Include="OldTest\UnitTest\ExpressionTest\Select.cs" />
<Compile Include="OldTest\UnitTest\ExpressionTest\Where.cs" />
<Compile Include="OldTest\UnitTest\Insert.cs" />
<Compile Include="OldTest\UnitTest\Mapping .cs" />
<Compile Include="OldTest\UnitTest\Query\JoinQuery.cs" />
<Compile Include="OldTest\UnitTest\Query\SelectQuery.cs" />
<Compile Include="OldTest\UnitTest\Query\SingleQuery.cs" />
<Compile Include="OldTest\UnitTest\Setting\Attribute.cs" />
<Compile Include="OldTest\UnitTest\Setting\AutoClose.cs" />
<Compile Include="OldTest\UnitTest\Setting\MapColumn.cs" />
<Compile Include="OldTest\UnitTest\Setting\MapTable.cs" />
<Compile Include="OldTest\UnitTest\UnitTestBase.cs" />
<Compile Include="OldTest\UnitTest\Update.cs" />
<Compile Include="UnitTest\Main.cs" />
<Compile Include="UnitTest\UAdo.cs" />
<Compile Include="UnitTest\UCodeFirst.cs" />
<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" />
7 years ago
</ItemGroup>
<ItemGroup>
6 years ago
<Content Include="OldTest\OtherDll\SyntacticSugar.dll" />
7 years ago
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SqlSugar\SqlSugar.csproj">
<Project>{489bb790-226c-4fad-8d1e-51d72a7ff8e5}</Project>
<Name>SqlSugar</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
6 years ago
<Folder Include="OldTest\DataBase\" />
7 years ago
</ItemGroup>
6 years ago
<ItemGroup>
<None Include="app.config" />
</ItemGroup>
7 years ago
<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>