Skip to content

Commit da1f4d9

Browse files
fix(tool): Place the .Order in the correct position
1 parent f6633eb commit da1f4d9

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [unreleased]
99

10+
## [0.17.4.1] - 2025-09-19
11+
12+
### Fixed
13+
14+
- Order list of loaded assemblies when logging a `FileLoadException`, but, like, really this time.
15+
1016
## [0.17.4] - 2025-09-19
1117

1218
### Fixed

TypeContractor.Tool/Generator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ public Task<int> Execute()
160160
}
161161
catch (FileLoadException ex)
162162
{
163-
Log.Instance.LogError(ex, string.Format("Unable to load a file. Loaded assemblies are: {0}", string.Join(",\n", context.GetAssemblies().Select(ass => ass.FullName)).Order()));
163+
Log.Instance.LogError(ex, string.Format("Unable to load a file. Loaded assemblies are: {0}", string.Join(",\n", context.GetAssemblies().Select(ass => ass.FullName).Order())));
164164
returnCode = 1;
165165
}
166166

0 commit comments

Comments
 (0)