From c03f91df97bc278ddd5b73dcb4f36166dc6106d6 Mon Sep 17 00:00:00 2001 From: Raghu Peri Date: Sun, 17 May 2026 11:57:13 +0100 Subject: [PATCH 1/4] CONFIG: Bump TargetFramework from net8.0 to net10.0 --- data-replicator/data-replicator.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data-replicator/data-replicator.csproj b/data-replicator/data-replicator.csproj index bc79e25..aebdb39 100644 --- a/data-replicator/data-replicator.csproj +++ b/data-replicator/data-replicator.csproj @@ -2,7 +2,7 @@ Exe - net8.0 + net10.0 data_replicator enable enable From 1b39f8587dc7125b1ee2cf179e4532094b326c8c Mon Sep 17 00:00:00 2001 From: Raghu Peri Date: Sun, 17 May 2026 11:57:30 +0100 Subject: [PATCH 2/4] CONFIG: Bump CsvHelper from 33.0.1 to 33.1.0 --- data-replicator/data-replicator.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data-replicator/data-replicator.csproj b/data-replicator/data-replicator.csproj index aebdb39..e967f6d 100644 --- a/data-replicator/data-replicator.csproj +++ b/data-replicator/data-replicator.csproj @@ -9,7 +9,7 @@ - + From 3f16bd7d3e987a376c7fd95986c64391afae8740 Mon Sep 17 00:00:00 2001 From: Raghu Peri Date: Sun, 17 May 2026 14:59:54 +0100 Subject: [PATCH 3/4] CONFIG: Convert solution from data-replicator.sln to data-replicator.slnx (slnx format) --- data-replicator.sln | 25 ------------------------- data-replicator.slnx | 3 +++ 2 files changed, 3 insertions(+), 25 deletions(-) delete mode 100644 data-replicator.sln create mode 100644 data-replicator.slnx diff --git a/data-replicator.sln b/data-replicator.sln deleted file mode 100644 index c122c98..0000000 --- a/data-replicator.sln +++ /dev/null @@ -1,25 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.10.35013.160 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "data-replicator", "data-replicator\data-replicator.csproj", "{D7D3221B-BC90-4DE5-8975-04BB35F7729E}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {D7D3221B-BC90-4DE5-8975-04BB35F7729E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D7D3221B-BC90-4DE5-8975-04BB35F7729E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D7D3221B-BC90-4DE5-8975-04BB35F7729E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D7D3221B-BC90-4DE5-8975-04BB35F7729E}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {9ACF5598-9433-4687-BE16-84FE149E4534} - EndGlobalSection -EndGlobal diff --git a/data-replicator.slnx b/data-replicator.slnx new file mode 100644 index 0000000..3dc9628 --- /dev/null +++ b/data-replicator.slnx @@ -0,0 +1,3 @@ + + + From 8ef6bedbd648b8b993b96e5702d5c8cc19909ae3 Mon Sep 17 00:00:00 2001 From: Raghu Peri Date: Sun, 17 May 2026 15:20:03 +0100 Subject: [PATCH 4/4] CONFIG: Add *.sln to .gitignore to prevent VS regenerating legacy solution file --- .gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 3e16852..1a65a0b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ bin/ obj/ -.vs/ \ No newline at end of file +.vs/ +# Legacy solution file (replaced by .slnx) +*.sln