You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/faq.md
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -14,9 +14,13 @@ Possible reasons:
14
14
- Migration class isn't attributed with `MigrationAttribute`
15
15
- The versions of the `Migrate.exe` tool (`FluentMigrator.Console` package) and the `FluentMigrator` package(s) referenced in your project are different.
16
16
17
-
## How can I run FluentMigrator.DotNet.Cli with a .NET 5.0 assembly?
17
+
## How can I run FluentMigrator.DotNet.Cli with a different .NET runtime target migration assembly?
18
18
19
-
The FluentMigrator.DotNet.Cli contains an `--allowDirtyAssemblies` switch that will allow you to load your 5.0 assemblies in a .NET Core 3.1 context. We're working on .NET 5.0 support.'
19
+
The FluentMigrator.DotNet.Cli contains an `--allowDirtyAssemblies` switch that will allow you to load your migration assemblies (e.g. 9.0) in a different .NET runtime context (e.g. 8.0).
20
+
21
+
## Why aren't my Maintenance Migrations found and run by my In-Process Runner?
22
+
23
+
If you're using a custom runner, use `.For.All()` instead of `.For.Migrations()`.
20
24
21
25
## Why do I get `System.IO.FileLoadException: Could not load file or assembly 'FluentMigrator ...`?
0 commit comments