Skip to content

Commit daadedb

Browse files
committed
Initial import from Npgsql repository
From commit 02136bdf22ef596e2b64ed918cb555372044704d (3.0.7) Project does not compile.
0 parents  commit daadedb

File tree

72 files changed

+22709
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+22709
-0
lines changed

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
; Top-most EditorConfig file
2+
root = true
3+
4+
; Unix-style newlines
5+
[*]
6+
end_of_line = LF
7+
8+
; 4-column space indentation
9+
[*.cs]
10+
indent_style = space
11+
indent_size = 4
12+
trim_trailing_whitespace = true
13+
insert_final_newline = true

.gitattributes

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
* text=auto
2+
3+
*.cs text=auto diff=csharp
4+
*.csproj text=auto
5+
*.sln text=auto
6+
*.resx text=auto
7+
*.xml text=auto
8+
*.txt text=auto
9+
10+
packages/ binary

.gitignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
.DS_Store
2+
*.resources
3+
*.suo
4+
*.user
5+
*.sln.docstates
6+
*.userprefs
7+
/*.nupkg
8+
[Bb]in/
9+
[Bb]uild/
10+
[Oo]bj/
11+
[Oo]bj/
12+
packages/*/
13+
artifacts/
14+
# Roslyn cache directories
15+
*.ide/

EntityFramework6.Npgsql.sln

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 14
4+
VisualStudioVersion = 14.0.25123.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EntityFramework6.Npgsql", "src\EntityFramework6.Npgsql\EntityFramework6.Npgsql.csproj", "{3EC85CBA-5B79-11E3-8104-0022198AB089}"
7+
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EntityFramework5.Npgsql", "src\EntityFramework5.Npgsql\EntityFramework5.Npgsql.csproj", "{100998C4-5B85-11E3-911C-0022198AB089}"
9+
EndProject
10+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{4A5A60DD-41B6-40BF-B677-227A921ECCC8}"
11+
ProjectSection(SolutionItems) = preProject
12+
CommonAssemblyInfo.cs = CommonAssemblyInfo.cs
13+
Npgsql.snk = Npgsql.snk
14+
EndProjectSection
15+
EndProject
16+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EntityFramework6.Npgsql.Tests", "test\EntityFramework6.Npgsql.Tests\EntityFramework6.Npgsql.Tests.csproj", "{4A0A42DE-C8B8-11E4-8EC9-005056A163A4}"
17+
EndProject
18+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{EEDE5FBC-717B-460F-9970-26A275F1E061}"
19+
EndProject
20+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{A27CECA5-F398-48F8-BE64-9CB2E1507F1F}"
21+
EndProject
22+
Global
23+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
24+
Debug|Any CPU = Debug|Any CPU
25+
Debug|x86 = Debug|x86
26+
Release|Any CPU = Release|Any CPU
27+
Release|x86 = Release|x86
28+
EndGlobalSection
29+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
30+
{3EC85CBA-5B79-11E3-8104-0022198AB089}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
31+
{3EC85CBA-5B79-11E3-8104-0022198AB089}.Debug|Any CPU.Build.0 = Debug|Any CPU
32+
{3EC85CBA-5B79-11E3-8104-0022198AB089}.Debug|x86.ActiveCfg = Debug|Any CPU
33+
{3EC85CBA-5B79-11E3-8104-0022198AB089}.Debug|x86.Build.0 = Debug|Any CPU
34+
{3EC85CBA-5B79-11E3-8104-0022198AB089}.Release|Any CPU.ActiveCfg = Release|Any CPU
35+
{3EC85CBA-5B79-11E3-8104-0022198AB089}.Release|Any CPU.Build.0 = Release|Any CPU
36+
{3EC85CBA-5B79-11E3-8104-0022198AB089}.Release|x86.ActiveCfg = Release|Any CPU
37+
{3EC85CBA-5B79-11E3-8104-0022198AB089}.Release|x86.Build.0 = Release|Any CPU
38+
{100998C4-5B85-11E3-911C-0022198AB089}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
39+
{100998C4-5B85-11E3-911C-0022198AB089}.Debug|Any CPU.Build.0 = Debug|Any CPU
40+
{100998C4-5B85-11E3-911C-0022198AB089}.Debug|x86.ActiveCfg = Debug|Any CPU
41+
{100998C4-5B85-11E3-911C-0022198AB089}.Debug|x86.Build.0 = Debug|Any CPU
42+
{100998C4-5B85-11E3-911C-0022198AB089}.Release|Any CPU.ActiveCfg = Release|Any CPU
43+
{100998C4-5B85-11E3-911C-0022198AB089}.Release|Any CPU.Build.0 = Release|Any CPU
44+
{100998C4-5B85-11E3-911C-0022198AB089}.Release|x86.ActiveCfg = Release|Any CPU
45+
{100998C4-5B85-11E3-911C-0022198AB089}.Release|x86.Build.0 = Release|Any CPU
46+
{4A0A42DE-C8B8-11E4-8EC9-005056A163A4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
47+
{4A0A42DE-C8B8-11E4-8EC9-005056A163A4}.Debug|Any CPU.Build.0 = Debug|Any CPU
48+
{4A0A42DE-C8B8-11E4-8EC9-005056A163A4}.Debug|x86.ActiveCfg = Debug|Any CPU
49+
{4A0A42DE-C8B8-11E4-8EC9-005056A163A4}.Debug|x86.Build.0 = Debug|Any CPU
50+
{4A0A42DE-C8B8-11E4-8EC9-005056A163A4}.Release|Any CPU.ActiveCfg = Release|Any CPU
51+
{4A0A42DE-C8B8-11E4-8EC9-005056A163A4}.Release|Any CPU.Build.0 = Release|Any CPU
52+
{4A0A42DE-C8B8-11E4-8EC9-005056A163A4}.Release|x86.ActiveCfg = Release|Any CPU
53+
{4A0A42DE-C8B8-11E4-8EC9-005056A163A4}.Release|x86.Build.0 = Release|Any CPU
54+
EndGlobalSection
55+
GlobalSection(SolutionProperties) = preSolution
56+
HideSolutionNode = FALSE
57+
EndGlobalSection
58+
GlobalSection(NestedProjects) = preSolution
59+
{3EC85CBA-5B79-11E3-8104-0022198AB089} = {EEDE5FBC-717B-460F-9970-26A275F1E061}
60+
{100998C4-5B85-11E3-911C-0022198AB089} = {EEDE5FBC-717B-460F-9970-26A275F1E061}
61+
{4A0A42DE-C8B8-11E4-8EC9-005056A163A4} = {A27CECA5-F398-48F8-BE64-9CB2E1507F1F}
62+
EndGlobalSection
63+
GlobalSection(MonoDevelopProperties) = preSolution
64+
StartupItem = Npgsql.csproj
65+
EndGlobalSection
66+
EndGlobal
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
2+
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=GSS/@EntryIndexedValue">GSS</s:String>
3+
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=MD/@EntryIndexedValue">MD</s:String>
4+
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=OID/@EntryIndexedValue">OID</s:String>
5+
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=SCM/@EntryIndexedValue">SCM</s:String>
6+
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=SQL/@EntryIndexedValue">SQL</s:String>
7+
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=SSL/@EntryIndexedValue">SSL</s:String>
8+
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=SSPI/@EntryIndexedValue">SSPI</s:String>
9+
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=TZ/@EntryIndexedValue">TZ</s:String>
10+
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/Abbreviations/=UTF/@EntryIndexedValue">UTF</s:String></wpf:ResourceDictionary>

LICENSE.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Copyright (c) 2002-2015, The Npgsql Development Team
2+
3+
Permission to use, copy, modify, and distribute this software and its documentation for any purpose, without fee, and without a written agreement is hereby granted, provided that the above copyright notice and this paragraph and the following two paragraphs appear in all copies.
4+
5+
IN NO EVENT SHALL THE NPGSQL DEVELOPMENT TEAM BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE NPGSQL DEVELOPMENT TEAM HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
6+
7+
THE NPGSQL DEVELOPMENT TEAM SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE NPGSQL DEVELOPMENT TEAM HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.

Npgsql.snk

596 Bytes
Binary file not shown.
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6+
<ProjectGuid>{100998C4-5B85-11E3-911C-0022198AB089}</ProjectGuid>
7+
<OutputType>Library</OutputType>
8+
<AppDesignerFolder>Properties</AppDesignerFolder>
9+
<AssemblyName>EntityFramework5.Npgsql</AssemblyName>
10+
<RootNamespace>Npgsql</RootNamespace>
11+
<FileAlignment>512</FileAlignment>
12+
<SignAssembly>true</SignAssembly>
13+
<AssemblyOriginatorKeyFile>..\..\Npgsql.snk</AssemblyOriginatorKeyFile>
14+
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
15+
<RestorePackages>true</RestorePackages>
16+
</PropertyGroup>
17+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18+
<DebugSymbols>true</DebugSymbols>
19+
<DebugType>full</DebugType>
20+
<Optimize>false</Optimize>
21+
<OutputPath>bin\Debug\</OutputPath>
22+
<DefineConstants>TRACE;DEBUG;NET45</DefineConstants>
23+
<ErrorReport>prompt</ErrorReport>
24+
<WarningLevel>4</WarningLevel>
25+
<DocumentationFile>bin\Debug\EntityFramework5.Npgsql.xml</DocumentationFile>
26+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
27+
<LangVersion>5</LangVersion>
28+
</PropertyGroup>
29+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
30+
<DebugType>pdbonly</DebugType>
31+
<Optimize>true</Optimize>
32+
<OutputPath>bin\Release\</OutputPath>
33+
<DefineConstants>TRACE;NET45</DefineConstants>
34+
<ErrorReport>prompt</ErrorReport>
35+
<WarningLevel>4</WarningLevel>
36+
<DocumentationFile>bin\Release\EntityFramework5.Npgsql.xml</DocumentationFile>
37+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
38+
<LangVersion>5</LangVersion>
39+
</PropertyGroup>
40+
<ItemGroup>
41+
<Reference Include="System" />
42+
<Reference Include="System.Core" />
43+
<Reference Include="System.Data" />
44+
<Reference Include="System.Data.Entity" />
45+
<Reference Include="System.Transactions" />
46+
<Reference Include="System.Configuration" />
47+
<Reference Include="System.Xml" />
48+
<Reference Include="System.ComponentModel.DataAnnotations" />
49+
</ItemGroup>
50+
<ItemGroup>
51+
<EmbeddedResource Include="..\EntityFramework6.Npgsql\NpgsqlSchema.msl" />
52+
<EmbeddedResource Include="..\EntityFramework6.Npgsql\NpgsqlSchema.ssdl" />
53+
<EmbeddedResource Include="..\EntityFramework6.Npgsql\NpgsqlSchemaV3.ssdl" />
54+
<EmbeddedResource Include="..\EntityFramework6.Npgsql\NpgsqlProviderManifest.Manifest.xml" />
55+
<None Include="..\EntityFramework6.Npgsql\packages.config" />
56+
</ItemGroup>
57+
<ItemGroup>
58+
<Compile Include="..\EntityFramework6.Npgsql\NpgsqlServices.cs" />
59+
<Compile Include="..\EntityFramework6.Npgsql\NpgsqlProviderManifest.cs" />
60+
<Compile Include="..\EntityFramework6.Npgsql\Properties\AssemblyInfo.cs" />
61+
<Compile Include="..\EntityFramework6.Npgsql\SqlGenerators\PendingProjectsNode.cs" />
62+
<Compile Include="..\EntityFramework6.Npgsql\SqlGenerators\SqlBaseGenerator.cs" />
63+
<Compile Include="..\EntityFramework6.Npgsql\SqlGenerators\SqlDeleteGenerator.cs" />
64+
<Compile Include="..\EntityFramework6.Npgsql\SqlGenerators\SqlInsertGenerator.cs" />
65+
<Compile Include="..\EntityFramework6.Npgsql\SqlGenerators\SqlSelectGenerator.cs" />
66+
<Compile Include="..\EntityFramework6.Npgsql\SqlGenerators\SqlUpdateGenerator.cs" />
67+
<Compile Include="..\EntityFramework6.Npgsql\SqlGenerators\StringPair.cs" />
68+
<Compile Include="..\EntityFramework6.Npgsql\SqlGenerators\VisitedExpression.cs" />
69+
<Compile Include="..\CommonAssemblyInfo.cs">
70+
<Link>Properties\CommonAssemblyInfo.cs</Link>
71+
<SubType>Code</SubType>
72+
</Compile>
73+
</ItemGroup>
74+
<ItemGroup />
75+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
76+
</Project>
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?xml version="1.0"?>
2+
<package xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3+
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
4+
<id>EntityFramework5.Npgsql</id>
5+
<title>Npgsql for Entity Framework 5</title>
6+
<version>0.0.0</version>
7+
<authors>Shay Rojansky, Emil Lenngren, Francisco Figueiredo Jr., Kenji Uno, Jon Asher, John Cooley, Federico Di Gregorio, Jon Hanna, Chris Morgan, Dave Page, Glen Parker, Brar Piening, Hiroshi Saito</authors>
8+
<owners>Shay Rojansky, Emil Lenngren, Francisco Figueiredo Jr., Kenji Uno</owners>
9+
<licenseUrl>https://github.com/npgsql/npgsql/blob/develop/LICENSE.txt</licenseUrl>
10+
<projectUrl>http://www.npgsql.org</projectUrl>
11+
<iconUrl>http://www.npgsql.org/img/postgresql.gif</iconUrl>
12+
<copyright>Copyright 2002 - 2015 Npgsql Development Team</copyright>
13+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
14+
<description>PostgreSQL provider for Entity Framework 5</description>
15+
<summary>PostgreSQL provider for Entity Framework 5</summary>
16+
<language>en-US</language>
17+
<tags>npgsql postgresql postgres data database entity framework ef orm</tags>
18+
<dependencies>
19+
<dependency id="Npgsql" version="[$version$]" />
20+
<dependency id="EntityFramework" version="(,6.0.0)" />
21+
</dependencies>
22+
</metadata>
23+
<files>
24+
<file src="bin\Release\EntityFramework5.Npgsql.dll" target="lib\net45"/>
25+
<file src="bin\Release\EntityFramework5.Npgsql.pdb" target="lib\net45"/>
26+
<file src="bin\Release\EntityFramework5.Npgsql.xml" target="lib\net45"/>
27+
<file src="**\*.cs" target="src" />
28+
</files>
29+
</package>
Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6+
<ProjectGuid>{3EC85CBA-5B79-11E3-8104-0022198AB089}</ProjectGuid>
7+
<OutputType>Library</OutputType>
8+
<AppDesignerFolder>Properties</AppDesignerFolder>
9+
<AssemblyName>EntityFramework6.Npgsql</AssemblyName>
10+
<RootNamespace>Npgsql</RootNamespace>
11+
<FileAlignment>512</FileAlignment>
12+
<SignAssembly>true</SignAssembly>
13+
<AssemblyOriginatorKeyFile>..\..\Npgsql.snk</AssemblyOriginatorKeyFile>
14+
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
15+
<RestorePackages>true</RestorePackages>
16+
</PropertyGroup>
17+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18+
<DebugSymbols>true</DebugSymbols>
19+
<DebugType>full</DebugType>
20+
<Optimize>false</Optimize>
21+
<OutputPath>bin\Debug\</OutputPath>
22+
<DefineConstants>TRACE;DEBUG;NET45;ENTITIES6</DefineConstants>
23+
<ErrorReport>prompt</ErrorReport>
24+
<WarningLevel>4</WarningLevel>
25+
<DocumentationFile>bin\Debug\EntityFramework6.Npgsql.xml</DocumentationFile>
26+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
27+
<LangVersion>5</LangVersion>
28+
</PropertyGroup>
29+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
30+
<DebugType>pdbonly</DebugType>
31+
<Optimize>true</Optimize>
32+
<OutputPath>bin\Release\</OutputPath>
33+
<DefineConstants>TRACE;NET45;ENTITIES6</DefineConstants>
34+
<ErrorReport>prompt</ErrorReport>
35+
<WarningLevel>4</WarningLevel>
36+
<DocumentationFile>bin\Release\EntityFramework6.Npgsql.xml</DocumentationFile>
37+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
38+
<LangVersion>5</LangVersion>
39+
</PropertyGroup>
40+
<ItemGroup>
41+
<Reference Include="System" />
42+
<Reference Include="System.Core" />
43+
<Reference Include="System.Data" />
44+
<Reference Include="System.Transactions" />
45+
<Reference Include="System.Configuration" />
46+
<Reference Include="System.Xml" />
47+
<Reference Include="System.ComponentModel.DataAnnotations" />
48+
</ItemGroup>
49+
<ItemGroup>
50+
<Reference Include="EntityFramework">
51+
<HintPath>..\..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.dll</HintPath>
52+
</Reference>
53+
</ItemGroup>
54+
<ItemGroup>
55+
<EmbeddedResource Include="NpgsqlSchema.msl" />
56+
<EmbeddedResource Include="NpgsqlSchema.ssdl" />
57+
<EmbeddedResource Include="NpgsqlSchemaV3.ssdl" />
58+
<EmbeddedResource Include="NpgsqlProviderManifest.Manifest.xml" />
59+
<None Include="packages.config" />
60+
</ItemGroup>
61+
<ItemGroup>
62+
<Compile Include="NpgsqlConnectionFactory.cs" />
63+
<Compile Include="NpgsqlMigrationSqlGenerator.cs" />
64+
<Compile Include="NpgsqlRankingNormalization.cs" />
65+
<Compile Include="NpgsqlServices.cs" />
66+
<Compile Include="NpgsqlProviderManifest.cs" />
67+
<Compile Include="NpgsqlTextFunctions.cs" />
68+
<Compile Include="NpgsqlWeightLabel.cs" />
69+
<Compile Include="Properties\AssemblyInfo.cs" />
70+
<Compile Include="SqlGenerators\PendingProjectsNode.cs" />
71+
<Compile Include="SqlGenerators\SqlBaseGenerator.cs" />
72+
<Compile Include="SqlGenerators\SqlDeleteGenerator.cs" />
73+
<Compile Include="SqlGenerators\SqlInsertGenerator.cs" />
74+
<Compile Include="SqlGenerators\SqlSelectGenerator.cs" />
75+
<Compile Include="SqlGenerators\SqlUpdateGenerator.cs" />
76+
<Compile Include="SqlGenerators\StringPair.cs" />
77+
<Compile Include="SqlGenerators\VisitedExpression.cs" />
78+
<Compile Include="..\CommonAssemblyInfo.cs">
79+
<Link>Properties\CommonAssemblyInfo.cs</Link>
80+
<SubType>Code</SubType>
81+
</Compile>
82+
</ItemGroup>
83+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
84+
</Project>

0 commit comments

Comments
 (0)