Skip to content

Commit 9f77cc0

Browse files
committed
Directory reorganisation. No code changes
1 parent 12ffab9 commit 9f77cc0

27 files changed

+171
-146
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.12.0
1+
0.13.0

Directory.Build.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<PropertyGroup>
3-
<Version>0.12.0</Version>
4-
<AssemblyVersion>0.12.0.0</AssemblyVersion>
5-
<FileVersion>0.12.0.0</FileVersion>
3+
<Version>0.13.0</Version>
4+
<AssemblyVersion>0.13.0.0</AssemblyVersion>
5+
<FileVersion>0.13.0.0</FileVersion>
66
</PropertyGroup>
77
</Project>

Neo4jExport/Neo4jExport.fsproj

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -25,25 +25,25 @@
2525

2626
<ItemGroup>
2727
<!-- Order matters in F# - files are compiled in the order listed -->
28-
<Compile Include="src/NonEmptyList.fs" />
29-
<Compile Include="src/Types.fs" />
30-
<Compile Include="src/RecordTypes.fs" />
31-
<Compile Include="src/ErrorTracking.fs" />
32-
<Compile Include="src/JsonHelpers.fs" />
33-
<Compile Include="src/Constants.fs" />
34-
<Compile Include="src/ErrorAccumulation.fs" />
35-
<Compile Include="src/AppContext.fs" />
36-
<Compile Include="src/Log.fs" />
37-
<Compile Include="src/LabelStatsTracker.fs" />
38-
<Compile Include="src/Security.fs" />
28+
<Compile Include="src/ErrorManagement/NonEmptyList.fs" />
29+
<Compile Include="src/Core/Types.fs" />
30+
<Compile Include="src/Core/RecordTypes.fs" />
31+
<Compile Include="src/ErrorManagement/ErrorTracking.fs" />
32+
<Compile Include="src/Json/JsonHelpers.fs" />
33+
<Compile Include="src/Core/Constants.fs" />
34+
<Compile Include="src/ErrorManagement/ErrorAccumulation.fs" />
35+
<Compile Include="src/Infrastructure/Log.fs" />
36+
<Compile Include="src/Infrastructure/AppContext.fs" />
37+
<Compile Include="src/Workflow/LabelStatsTracker.fs" />
38+
<Compile Include="src/Configuration/Security.fs" />
3939
<Compile Include="src/Utils.fs" />
40-
<Compile Include="src/Configuration.fs" />
41-
<Compile Include="src/JsonConfig.fs" />
42-
<Compile Include="src/MetadataWriter.fs" />
43-
<Compile Include="src/Neo4j.fs" />
44-
<Compile Include="src/Preflight.fs" />
45-
<Compile Include="src/Metadata.fs" />
46-
<Compile Include="src/Cleanup.fs" />
40+
<Compile Include="src/Configuration/Configuration.fs" />
41+
<Compile Include="src/Json/JsonConfig.fs" />
42+
<Compile Include="src/Workflow/MetadataWriter.fs" />
43+
<Compile Include="src/Database/Neo4j.fs" />
44+
<Compile Include="src/Workflow/Preflight.fs" />
45+
<Compile Include="src/Database/Metadata.fs" />
46+
<Compile Include="src/Infrastructure/Cleanup.fs" />
4747

4848
<!-- Export module hierarchy -->
4949
<Compile Include="src/Export/Types.fs" />
@@ -56,14 +56,14 @@
5656
<Compile Include="src/Export/Serialization/GraphElements.fs" />
5757
<Compile Include="src/Export/Serialization/Path.fs" />
5858
<Compile Include="src/Export/Serialization/Engine.fs" />
59-
<Compile Include="src/Export/ErrorDeduplication.fs" />
59+
<Compile Include="src/ErrorManagement/ErrorDeduplication.fs" />
6060
<Compile Include="src/Export/BatchProcessing.fs" />
6161
<Compile Include="src/Export/Core.fs" />
6262
<Compile Include="src/Export.fs" />
6363

64-
<Compile Include="src/Monitoring.fs" />
65-
<Compile Include="src/Workflow.fs" />
66-
<Compile Include="src/SignalHandling.fs" />
64+
<Compile Include="src/Infrastructure/Monitoring.fs" />
65+
<Compile Include="src/Workflow/Workflow.fs" />
66+
<Compile Include="src/Infrastructure/SignalHandling.fs" />
6767
<Compile Include="src/Program.fs" />
6868
</ItemGroup>
6969

File renamed without changes.
Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,11 @@ type ApplicationContext =
189189
if System.IO.File.Exists(tempFile) then
190190
System.IO.File.Delete(tempFile)
191191
with ex ->
192-
eprintfn "[WARN] Failed to delete temporary file '%s': %s: %s" tempFile (ex.GetType().Name) ex.Message
192+
eprintfn
193+
"[WARN] Failed to delete temporary file '%s': %s: %s"
194+
tempFile
195+
(ex.GetType().Name)
196+
ex.Message
193197

194198
// Step 3: Clean up processes with safe property access
195199
for proc in this.ActiveProcesses do
@@ -212,7 +216,11 @@ type ApplicationContext =
212216

213217
proc.Dispose()
214218
with ex ->
215-
eprintfn "[WARN] Failed to terminate/dispose process (PID %d): %s: %s" processId (ex.GetType().Name) ex.Message
219+
eprintfn
220+
"[WARN] Failed to terminate/dispose process (PID %d): %s: %s"
221+
processId
222+
(ex.GetType().Name)
223+
ex.Message
216224
else
217225
// Process already disposed, try to dispose anyway
218226
try

0 commit comments

Comments
 (0)