Слияние кода завершено, страница обновится автоматически
<?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>{0A3596BC-C953-4441-8DDC-250F5EA23AAE}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>LambdaToSql</RootNamespace>
<AssemblyName>LambdaToSql</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<SccProjectName>SAK</SccProjectName>
<SccLocalPath>SAK</SccLocalPath>
<SccAuxPath>SAK</SccAuxPath>
<SccProvider>SAK</SccProvider>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Debug\LambdaToSql.xml</DocumentationFile>
<NoWarn>1591</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Newtonsoft.Json, Version=11.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.11.0.2\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.ComponentModel.DataAnnotations" />
<Reference Include="System.configuration" />
<Reference Include="System.Core" />
<Reference Include="System.Data.SQLite, Version=1.0.109.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>lib\System.Data.SQLite.dll</HintPath>
</Reference>
<Reference Include="System.Drawing" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Web" />
<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="DbHelper\Factory.cs" />
<Compile Include="DbHelper\IDBhelper.cs" />
<Compile Include="DbHelper\SqLite.cs" />
<Compile Include="DbHelper\MsSqlServer.cs" />
<Compile Include="EntityModel\Base.cs" />
<Compile Include="EntityModel\BaseModel\DataParameter.cs" />
<Compile Include="EntityModel\BaseModel\SqlType.cs" />
<Compile Include="EntityModel\BaseModel\TableColumn.cs" />
<Compile Include="EntityModel\DbContext.cs" />
<Compile Include="EntityModel\DeleteEntity.cs" />
<Compile Include="EntityModel\BaseModel\Result.cs" />
<Compile Include="EntityModel\MsSqlServer\UpdateEntity.cs" />
<Compile Include="EntityModel\SqLite\UpdateEntity.cs" />
<Compile Include="EntityModel\UpdateEntity.cs" />
<Compile Include="EntityModel\InsertEntity.cs" />
<Compile Include="EntityModel\BaseModel\Table.cs" />
<Compile Include="EntityModel\MsSqlServer\DeleteEntity.cs" />
<Compile Include="EntityModel\MsSqlServer\InsertEntity.cs" />
<Compile Include="EntityModel\MsSqlServer\QueryEntity.cs" />
<Compile Include="EntityModel\SqLite\DeleteEntity.cs" />
<Compile Include="EntityModel\SqLite\InsertEntity.cs" />
<Compile Include="EntityModel\SqLite\QueryEntity.cs" />
<Compile Include="Extended\LambdaExtensions.cs" />
<Compile Include="FrameWork\Cache.cs" />
<Compile Include="Extended\WhereExtensions.cs" />
<Compile Include="Interface\IDbFirst.cs" />
<Compile Include="LambdaParser\ExpressionTypeCast.cs" />
<Compile Include="FrameWork\LambdaHelpher.cs" />
<Compile Include="Interface\IInsertable.cs" />
<Compile Include="Interface\IUpdateable.cs" />
<Compile Include="Interface\IDeleteable.cs" />
<Compile Include="LambdaParser\ParserBuilder.cs" />
<Compile Include="LambdaParser\Nominator.cs" />
<Compile Include="LambdaParser\PartialEvaluator.cs" />
<Compile Include="LambdaParser\LambdaRouter.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Interface\IQueryable.cs" />
<Compile Include="Realization\DbFirst.cs" />
<Compile Include="Realization\Deleteable.cs" />
<Compile Include="Realization\MsSqlServer\Deleteable.cs" />
<Compile Include="Realization\MsSqlServer\Insertable.cs" />
<Compile Include="Realization\MsSqlServer\Queryable.cs" />
<Compile Include="Realization\MsSqlServer\Updateable.cs" />
<Compile Include="Realization\SqLite\Deleteable.cs" />
<Compile Include="Realization\SqLite\Insertable.cs" />
<Compile Include="Realization\SqLite\Queryable.cs" />
<Compile Include="Realization\SqLite\Updateable.cs" />
<Compile Include="Realization\Updateable.cs" />
<Compile Include="Realization\Insertable.cs" />
<Compile Include="Realization\Queryable.cs" />
<Compile Include="SqlClient.cs" />
<Compile Include="FrameWork\Tools.cs" />
<Compile Include="EntityModel\QueryEntity.cs" />
<Compile Include="TableStruct\BaseTable.cs" />
<Compile Include="TableStruct\MsSqlServer.cs" />
<Compile Include="TableStruct\SqLite.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
<None Include="log.log" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<Content Include="lib\System.Data.SQLite.dll" />
<Content Include="lib\x64\SQLite.Interop.dll" />
<Content Include="lib\x86\SQLite.Interop.dll" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
Вы можете оставить комментарий после Вход в систему
Неприемлемый контент может быть отображен здесь и не будет показан на странице. Вы можете проверить и изменить его с помощью соответствующей функции редактирования.
Если вы подтверждаете, что содержание не содержит непристойной лексики/перенаправления на рекламу/насилия/вульгарной порнографии/нарушений/пиратства/ложного/незначительного или незаконного контента, связанного с национальными законами и предписаниями, вы можете нажать «Отправить» для подачи апелляции, и мы обработаем ее как можно скорее.
Опубликовать ( 0 )