Skip to content

Commit 366f556

Browse files
committed
Moved .NET projects into the correct location.
1 parent 3ce19b8 commit 366f556

4 files changed

Lines changed: 79 additions & 79 deletions

File tree

NetReplicationLibrary/NetReplicationLibrary.synproj

Lines changed: 0 additions & 63 deletions
This file was deleted.
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
<Project Sdk="Microsoft.NET.Sdk" DefaultTargets="restore;Build">
2+
<Import Project="$(SolutionDir)Common.props" />
3+
<PropertyGroup>
4+
<TargetFramework>netstandard2.0</TargetFramework>
5+
<DefaultLanguageSourceExtension>.dbl</DefaultLanguageSourceExtension>
6+
<EnableDefaultItems>false</EnableDefaultItems>
7+
<ProjectGuid>{d62894b0-e298-40f2-a110-04b008e0febb}</ProjectGuid>
8+
<Name>NetReplicationLibrary</Name>
9+
<EnableCommonProperties>True</EnableCommonProperties>
10+
<CommonPropertiesFileLocation>$(SolutionDir)Common.props</CommonPropertiesFileLocation>
11+
</PropertyGroup>
12+
<ItemGroup>
13+
<PackageReference Include="Synergex.SynergyDE.Build" Version="23.*" />
14+
<PackageReference Include="Synergex.SynergyDE.synrnt" Version="12.*" />
15+
<PackageReference Include="System.Text.Json">
16+
<Version>6.0.8</Version>
17+
</PackageReference>
18+
</ItemGroup>
19+
<ItemGroup>
20+
<Compile Include="..\..\SRC\LIBRARY\CommandLineParser.dbl" />
21+
<Compile Include="..\..\SRC\LIBRARY\ConfigureReplication.dbl" />
22+
<Compile Include="..\..\SRC\LIBRARY\DatabaseCommunicationException.dbl" />
23+
<Compile Include="..\..\SRC\LIBRARY\DataConversionTools.dbl" />
24+
<Compile Include="..\..\SRC\LIBRARY\DepartmentSqlIO.dbl" />
25+
<Compile Include="..\..\SRC\LIBRARY\EmployeeSqlIO.dbl" />
26+
<Compile Include="..\..\SRC\LIBRARY\File.dbl" />
27+
<Compile Include="..\..\SRC\LIBRARY\FileChunkReader.dbl" />
28+
<Compile Include="..\..\SRC\LIBRARY\FileServiceClient.dbl" />
29+
<Compile Include="..\..\SRC\LIBRARY\GenerateDepartmentData.dbl" />
30+
<Compile Include="..\..\SRC\LIBRARY\GenerateEmployeeData.dbl" />
31+
<Compile Include="..\..\SRC\LIBRARY\GetDateTimeString.dbl" />
32+
<Compile Include="..\..\SRC\LIBRARY\GetInstanceNames.dbl" />
33+
<Compile Include="..\..\SRC\LIBRARY\GetReplicatedTables.dbl" />
34+
<Compile Include="..\..\SRC\LIBRARY\IndexExists.dbl" />
35+
<Compile Include="..\..\SRC\LIBRARY\InstanceInfo.dbl" />
36+
<Compile Include="..\..\SRC\LIBRARY\IOHooksISAM.dbl" />
37+
<Compile Include="..\..\SRC\LIBRARY\IOHooksRELATIVE.dbl" />
38+
<Compile Include="..\..\SRC\LIBRARY\IsDate.dbl" />
39+
<Compile Include="..\..\SRC\LIBRARY\IsDecimal.dbl" />
40+
<Compile Include="..\..\SRC\LIBRARY\IsEmailAddress.dbl" />
41+
<Compile Include="..\..\SRC\LIBRARY\IsTime.dbl" />
42+
<Compile Include="..\..\SRC\LIBRARY\Json.dbl" />
43+
<Compile Include="..\..\SRC\LIBRARY\LastRecordCache.dbl" />
44+
<Compile Include="..\..\SRC\LIBRARY\MakeDateForCsv.dbl" />
45+
<Compile Include="..\..\SRC\LIBRARY\MakeDecimalForCsv.dbl" />
46+
<Compile Include="..\..\SRC\LIBRARY\MakeTimeForCsv.dbl" />
47+
<Compile Include="..\..\SRC\LIBRARY\OpenOrCreateQueueFile.dbl" />
48+
<Compile Include="..\..\SRC\LIBRARY\PopulateReplicationKey.dbl" />
49+
<Compile Include="..\..\SRC\LIBRARY\Replicate.dbl" />
50+
<Compile Include="..\..\SRC\LIBRARY\SmtpMail.dbl" />
51+
<Compile Include="..\..\SRC\LIBRARY\StringDictionary.dbl" />
52+
<Compile Include="..\..\SRC\LIBRARY\StringTools.dbl" />
53+
<Compile Include="..\..\SRC\LIBRARY\ThrowOnCommunicationError.dbl" />
54+
</ItemGroup>
55+
<ItemGroup>
56+
<Content Include="..\..\SRC\LIBRARY\SmtpMail.def">
57+
<SubType>Content</SubType>
58+
</Content>
59+
<Content Include="..\..\SRC\LIBRARY\sqlgbl.def">
60+
<SubType>Content</SubType>
61+
</Content>
62+
</ItemGroup>
63+
</Project>
Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,19 @@
2222
</ProjectReference>
2323
</ItemGroup>
2424
<ItemGroup>
25-
<Compile Include="..\SRC\REPLICATOR\ConfigureEnvironment.dbl" />
26-
<Compile Include="..\SRC\REPLICATOR\Counters.dbl" />
27-
<Compile Include="..\SRC\REPLICATOR\DatabaseConnect.dbl" />
28-
<Compile Include="..\SRC\REPLICATOR\DatabaseDisconnect.dbl" />
29-
<Compile Include="..\SRC\REPLICATOR\DatabaseReconnect.dbl" />
30-
<Compile Include="..\SRC\REPLICATOR\GetSettings.dbl" />
31-
<Compile Include="..\SRC\REPLICATOR\Logger.dbl" />
32-
<Compile Include="..\SRC\REPLICATOR\OpenQueueFile.dbl" />
33-
<Compile Include="..\SRC\REPLICATOR\ReOpenQueueFile.dbl" />
34-
<Compile Include="..\SRC\REPLICATOR\replicator.dbl" />
35-
<Compile Include="..\SRC\REPLICATOR\ReplicatorShutdown.dbl" />
36-
<Compile Include="..\SRC\REPLICATOR\SendEmail.dbl" />
37-
<Compile Include="..\SRC\REPLICATOR\Settings.dbl" />
38-
<Compile Include="..\SRC\REPLICATOR\TimeNow.dbl" />
25+
<Compile Include="..\..\SRC\REPLICATOR\ConfigureEnvironment.dbl" />
26+
<Compile Include="..\..\SRC\REPLICATOR\Counters.dbl" />
27+
<Compile Include="..\..\SRC\REPLICATOR\DatabaseConnect.dbl" />
28+
<Compile Include="..\..\SRC\REPLICATOR\DatabaseDisconnect.dbl" />
29+
<Compile Include="..\..\SRC\REPLICATOR\DatabaseReconnect.dbl" />
30+
<Compile Include="..\..\SRC\REPLICATOR\GetSettings.dbl" />
31+
<Compile Include="..\..\SRC\REPLICATOR\Logger.dbl" />
32+
<Compile Include="..\..\SRC\REPLICATOR\OpenQueueFile.dbl" />
33+
<Compile Include="..\..\SRC\REPLICATOR\ReOpenQueueFile.dbl" />
34+
<Compile Include="..\..\SRC\REPLICATOR\replicator.dbl" />
35+
<Compile Include="..\..\SRC\REPLICATOR\ReplicatorShutdown.dbl" />
36+
<Compile Include="..\..\SRC\REPLICATOR\SendEmail.dbl" />
37+
<Compile Include="..\..\SRC\REPLICATOR\Settings.dbl" />
38+
<Compile Include="..\..\SRC\REPLICATOR\TimeNow.dbl" />
3939
</ItemGroup>
4040
</Project>

SqlReplication.sln

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "File Definitions", "File De
7979
EndProject
8080
Project("{BBD0F5D1-1CC4-42FD-BA4C-A96779C64378}") = "tools", "PRJVS\tools\tools.synproj", "{123F18A8-DB24-4ED3-91BF-ED7917BEF4C1}"
8181
EndProject
82-
Project("{BBD0F5D1-1CC4-42FD-BA4C-A96779C64378}") = "NetReplicator", "NetReplicator\NetReplicator.synproj", "{36F63F9A-2E5A-4542-AC06-A8EAE8732507}"
82+
Project("{BBD0F5D1-1CC4-42FD-BA4C-A96779C64378}") = "NetReplicator", "PRJVS\NetReplicator\NetReplicator.synproj", "{36F63F9A-2E5A-4542-AC06-A8EAE8732507}"
8383
EndProject
84-
Project("{BBD0F5D1-1CC4-42FD-BA4C-A96779C64378}") = "NetReplicationLibrary", "NetReplicationLibrary\NetReplicationLibrary.synproj", "{D62894B0-E298-40F2-A110-04B008E0FEBB}"
84+
Project("{BBD0F5D1-1CC4-42FD-BA4C-A96779C64378}") = "NetReplicationLibrary", "PRJVS\NetReplicationLibrary\NetReplicationLibrary.synproj", "{D62894B0-E298-40F2-A110-04B008E0FEBB}"
8585
EndProject
8686
Global
8787
GlobalSection(SolutionConfigurationPlatforms) = preSolution

0 commit comments

Comments
 (0)