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.

133 lines
5.8 KiB

2 years ago
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{CB591654-0476-40AA-8508-784CF32BE239}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>OrmTest</RootNamespace>
  11. <AssemblyName>OrmTest</AssemblyName>
  12. <TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  15. <TargetFrameworkProfile />
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <PlatformTarget>AnyCPU</PlatformTarget>
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>bin\Debug\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. <Prefer32Bit>false</Prefer32Bit>
  27. </PropertyGroup>
  28. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  29. <PlatformTarget>AnyCPU</PlatformTarget>
  30. <DebugType>pdbonly</DebugType>
  31. <Optimize>true</Optimize>
  32. <OutputPath>bin\Release\</OutputPath>
  33. <DefineConstants>TRACE</DefineConstants>
  34. <ErrorReport>prompt</ErrorReport>
  35. <WarningLevel>4</WarningLevel>
  36. <Prefer32Bit>false</Prefer32Bit>
  37. </PropertyGroup>
  38. <ItemGroup>
  39. <Reference Include="SyntacticSugar, Version=2.4.1.0, Culture=neutral, processorArchitecture=MSIL">
  40. <SpecificVersion>False</SpecificVersion>
  41. <HintPath>OtherDll\SyntacticSugar.dll</HintPath>
  42. </Reference>
  43. <Reference Include="System" />
  44. <Reference Include="System.Core" />
  45. <Reference Include="System.Xml.Linq" />
  46. <Reference Include="System.Data.DataSetExtensions" />
  47. <Reference Include="Microsoft.CSharp" />
  48. <Reference Include="System.Data" />
  49. <Reference Include="System.Xml" />
  50. </ItemGroup>
  51. <ItemGroup>
  52. <Compile Include="Models\CapitalEntity.cs" />
  53. <Compile Include="Config.cs" />
  54. <Compile Include="Demos\5_CodeFirst.cs" />
  55. <Compile Include="Demos\6_ComplexModel.cs" />
  56. <Compile Include="Demos\7_Filter.cs" />
  57. <Compile Include="Demos\8_JoinSql.cs" />
  58. <Compile Include="Demos\5_DbFirst.cs" />
  59. <Compile Include="Demos\4_Delete.cs" />
  60. <Compile Include="Demos\9_Aop.cs" />
  61. <Compile Include="Demos\B_SharedConnection.cs" />
  62. <Compile Include="Demos\C_ExtSqlFun.cs" />
  63. <Compile Include="Demos\Z_DemoBase.cs" />
  64. <Compile Include="Demos\3_Insert.cs" />
  65. <Compile Include="Demos\1_Query.cs" />
  66. <Compile Include="Demos\2_Update.cs" />
  67. <Compile Include="Demos\A_MasterSlave.cs" />
  68. <Compile Include="Demos\D_QueryableView.cs" />
  69. <Compile Include="Demos\E_Attribute.cs" />
  70. <Compile Include="Models\DataTestInfo.cs" />
  71. <Compile Include="Models\DataTestInfo2.cs" />
  72. <Compile Include="Models\Enum.cs" />
  73. <Compile Include="Models\ViewModelStudent.cs" />
  74. <Compile Include="PerformanceTesting\PerformanceBase.cs" />
  75. <Compile Include="PerformanceTesting\SqlSugarPerformance.cs" />
  76. <Compile Include="T4\SugarTemplate1.cs" />
  77. <Compile Include="T4\SugarTemplate2.cs">
  78. <AutoGen>True</AutoGen>
  79. <DesignTime>True</DesignTime>
  80. <DependentUpon>SugarTemplate.tt</DependentUpon>
  81. </Compile>
  82. <Compile Include="UnitTest\DataTest.cs" />
  83. <Compile Include="UnitTest\DataTest2.cs" />
  84. <Compile Include="UnitTest\Delete.cs" />
  85. <Compile Include="UnitTest\EnumTest.cs" />
  86. <Compile Include="UnitTest\UnitTestBase.cs" />
  87. <Compile Include="UnitTest\ExpressionTest\Field.cs" />
  88. <Compile Include="UnitTest\Insert.cs" />
  89. <Compile Include="UnitTest\Mapping .cs" />
  90. <Compile Include="UnitTest\Query\JoinQuery.cs" />
  91. <Compile Include="UnitTest\ExpressionTest\Method.cs" />
  92. <Compile Include="UnitTest\ExpressionTest\Select.cs" />
  93. <Compile Include="UnitTest\Query\SelectQuery.cs" />
  94. <Compile Include="UnitTest\Query\SingleQuery.cs" />
  95. <Compile Include="UnitTest\ExpressionTest\Where.cs" />
  96. <Compile Include="Models\School.cs" />
  97. <Compile Include="Models\Student.cs" />
  98. <Compile Include="Program.cs" />
  99. <Compile Include="Properties\AssemblyInfo.cs" />
  100. <Compile Include="UnitTest\Setting\Attribute.cs" />
  101. <Compile Include="UnitTest\Setting\AutoClose.cs" />
  102. <Compile Include="UnitTest\Setting\MapColumn.cs" />
  103. <Compile Include="UnitTest\Setting\MapTable.cs" />
  104. <Compile Include="UnitTest\Update.cs" />
  105. </ItemGroup>
  106. <ItemGroup>
  107. <Content Include="DataBase\script.sql" />
  108. <Content Include="OtherDll\SyntacticSugar.dll" />
  109. <Content Include="T4\SugarTemplate.tt">
  110. <Generator>TextTemplatingFileGenerator</Generator>
  111. <LastGenOutput>SugarTemplate2.cs</LastGenOutput>
  112. </Content>
  113. </ItemGroup>
  114. <ItemGroup>
  115. <Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
  116. </ItemGroup>
  117. <ItemGroup>
  118. <None Include="app.config" />
  119. </ItemGroup>
  120. <ItemGroup>
  121. <ProjectReference Include="..\SqlSugar\SqlSugar.csproj">
  122. <Project>{489bb790-226c-4fad-8d1e-51d72a7ff8e5}</Project>
  123. <Name>SqlSugar</Name>
  124. </ProjectReference>
  125. </ItemGroup>
  126. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  127. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  128. Other similar extension points exist, see Microsoft.Common.targets.
  129. <Target Name="BeforeBuild">
  130. </Target>
  131. <Target Name="AfterBuild">
  132. </Target>
  133. -->
  134. </Project>