Skip to content

Commit 472d451

Browse files
committed
begin implement postgres
1 parent 4d2ee51 commit 472d451

16 files changed

+1783
-1178
lines changed

Dotmim.Sync.sln

+19-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Samples", "Samples", "{2E7C
2727
EndProject
2828
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Dotmim.Sync.SqlServer.ChangeTracking", "Projects\Dotmim.Sync.SqlServer.ChangeTracking\Dotmim.Sync.SqlServer.ChangeTracking.csproj", "{8DB5316F-FE85-4C16-B3FF-3D5077523EC2}"
2929
EndProject
30+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Dotmim.Sync.PostgreSql", "Projects\Dotmim.Sync.PostgreSql\Dotmim.Sync.PostgreSql.csproj", "{9C363E70-F405-43B1-AFA3-4232688AB292}"
31+
EndProject
3032
Global
3133
GlobalSection(SolutionConfigurationPlatforms) = preSolution
3234
Debug|Any CPU = Debug|Any CPU
@@ -198,6 +200,22 @@ Global
198200
{8DB5316F-FE85-4C16-B3FF-3D5077523EC2}.Release|x64.Build.0 = Release|Any CPU
199201
{8DB5316F-FE85-4C16-B3FF-3D5077523EC2}.Release|x86.ActiveCfg = Release|Any CPU
200202
{8DB5316F-FE85-4C16-B3FF-3D5077523EC2}.Release|x86.Build.0 = Release|Any CPU
203+
{9C363E70-F405-43B1-AFA3-4232688AB292}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
204+
{9C363E70-F405-43B1-AFA3-4232688AB292}.Debug|Any CPU.Build.0 = Debug|Any CPU
205+
{9C363E70-F405-43B1-AFA3-4232688AB292}.Debug|ARM.ActiveCfg = Debug|Any CPU
206+
{9C363E70-F405-43B1-AFA3-4232688AB292}.Debug|ARM.Build.0 = Debug|Any CPU
207+
{9C363E70-F405-43B1-AFA3-4232688AB292}.Debug|x64.ActiveCfg = Debug|Any CPU
208+
{9C363E70-F405-43B1-AFA3-4232688AB292}.Debug|x64.Build.0 = Debug|Any CPU
209+
{9C363E70-F405-43B1-AFA3-4232688AB292}.Debug|x86.ActiveCfg = Debug|Any CPU
210+
{9C363E70-F405-43B1-AFA3-4232688AB292}.Debug|x86.Build.0 = Debug|Any CPU
211+
{9C363E70-F405-43B1-AFA3-4232688AB292}.Release|Any CPU.ActiveCfg = Release|Any CPU
212+
{9C363E70-F405-43B1-AFA3-4232688AB292}.Release|Any CPU.Build.0 = Release|Any CPU
213+
{9C363E70-F405-43B1-AFA3-4232688AB292}.Release|ARM.ActiveCfg = Release|Any CPU
214+
{9C363E70-F405-43B1-AFA3-4232688AB292}.Release|ARM.Build.0 = Release|Any CPU
215+
{9C363E70-F405-43B1-AFA3-4232688AB292}.Release|x64.ActiveCfg = Release|Any CPU
216+
{9C363E70-F405-43B1-AFA3-4232688AB292}.Release|x64.Build.0 = Release|Any CPU
217+
{9C363E70-F405-43B1-AFA3-4232688AB292}.Release|x86.ActiveCfg = Release|Any CPU
218+
{9C363E70-F405-43B1-AFA3-4232688AB292}.Release|x86.Build.0 = Release|Any CPU
201219
EndGlobalSection
202220
GlobalSection(SolutionProperties) = preSolution
203221
HideSolutionNode = FALSE
@@ -208,8 +226,8 @@ Global
208226
{5D23F616-DBAD-40EC-B588-2925C96DB9A0} = {2E7CD7E6-8D9F-47E0-B5E3-4CF58C85F273}
209227
EndGlobalSection
210228
GlobalSection(ExtensibilityGlobals) = postSolution
211-
SolutionGuid = {348020ED-748B-4CC8-AA1D-9F7D36E2AC12}
212229
BuildVersion_StartDate = 2000/1/1
230+
SolutionGuid = {348020ED-748B-4CC8-AA1D-9F7D36E2AC12}
213231
EndGlobalSection
214232
GlobalSection(Performance) = preSolution
215233
HasPerformanceSessions = true

Projects/Dotmim.Sync.PostgreSql/Dotmim.Sync.PostgreSql.csproj

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,15 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Npgsql" Version="3.2.5" />
8+
<PackageReference Include="Npgsql" Version="4.1.3.1" />
99
</ItemGroup>
1010

1111
<ItemGroup>
1212
<ProjectReference Include="..\Dotmim.Sync.Core\Dotmim.Sync.Core.csproj" />
1313
</ItemGroup>
1414

15+
<ItemGroup>
16+
<Folder Include="Builders\" />
17+
</ItemGroup>
18+
1519
</Project>

0 commit comments

Comments
 (0)