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.
89 lines
3.7 KiB
89 lines
3.7 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="15.0" 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>{7BAAEBFC-D86E-4127-8640-E7EFAB8F40EA}</ProjectGuid>
|
|
<OutputType>Exe</OutputType>
|
|
<RootNamespace>CustomDbTest</RootNamespace>
|
|
<AssemblyName>CustomDbTest</AssemblyName>
|
|
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
|
|
<FileAlignment>512</FileAlignment>
|
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
|
<Deterministic>true</Deterministic>
|
|
</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="System" />
|
|
<Reference Include="System.ComponentModel.DataAnnotations" />
|
|
<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.Net.Http" />
|
|
<Reference Include="System.Xml" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="Config.cs" />
|
|
<Compile Include="Demo0_SqlSugarClient.cs" />
|
|
<Compile Include="Demo1_Queryable.cs" />
|
|
<Compile Include="Demo2_Updateable.cs" />
|
|
<Compile Include="Demo3_Insertable.cs" />
|
|
<Compile Include="Demo4_Deleteable.cs" />
|
|
<Compile Include="Demo5_SqlQueryable.cs" />
|
|
<Compile Include="Demo7_Ado.cs" />
|
|
<Compile Include="DemoD_DbFirst.cs" />
|
|
<Compile Include="Models\AttributeTable.cs" />
|
|
<Compile Include="Models\Custom.cs" />
|
|
<Compile Include="Models\DataDictionary.cs" />
|
|
<Compile Include="Models\EntityMapper.cs" />
|
|
<Compile Include="Models\Mapper.cs" />
|
|
<Compile Include="Models\Order.cs" />
|
|
<Compile Include="Models\OrderItem.cs" />
|
|
<Compile Include="Models\SubInsertTest.cs" />
|
|
<Compile Include="Models\TestTree.cs" />
|
|
<Compile Include="Models\Tree.cs" />
|
|
<Compile Include="Models\ViewOrder.cs" />
|
|
<Compile Include="Program.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="App.config" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\SqlSugar.Access\SqlSugar.Access.csproj">
|
|
<Project>{0a27f276-d442-4e0a-b810-32d6074f0155}</Project>
|
|
<Name>SqlSugar.Access</Name>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\SqlSugar\SqlSugar.csproj">
|
|
<Project>{489bb790-226c-4fad-8d1e-51d72a7ff8e5}</Project>
|
|
<Name>SqlSugar</Name>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="Test.accdb">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
</Project>
|