我有一个包含大量迁移的项目。我可以使用 migrator.exe 手动运行它,但是很难让它与我更喜欢的 NAnt 一起工作。
我有一个包含以下内容的 *.build 文件:
<project name="Migrations" xmlns="http://nant.sf.net/release/0.85/nant.xsd" default="migrate">
<loadtasks assembly="../packages/FluentMigrator.1.0.3.0/tools/FluentMigrator.NAnt.dll" />
<target name="migrate" description="Migrate the database">
<property name="version" value="-1" overwrite="false" />
<migrate
provider="sqlserver2008"
connectionstring="data source=*********; Initial Catalog=*****;User Id=*******; Password=********;"
target="./Migrations/bin/Debug/Migrations.dll"
directory="Migrations"
task="migrate"
to="${version}" />
</target>
</project>
当它运行时,我得到以下输出:BUILD FAILED
C:\projects\ThisProject\Migrations\migrations.build(3,3):
Failure scanning "C:\projects\packages\FluentMigrator.1.0.3.0\tools\FluentMigrator.NAnt.dll" for extensions.
Could not load file or assembly 'file:///C:\projects\packages\FluentMigrator.1.0.3.0\tools\FluentMigrator.NAnt.dll' or one of its dependencies. An attempt was made to load a program with an incorrect format.
我去寻找depends.exe,但该站点似乎已关闭,有关如何使其正常工作的任何想法?如果我做错了,我愿意接受全新的想法。
======更新完整解决方案======
主席和 armen.shimoon 对他们的答案有所了解。
第一步,我将 FluentMigrator 和 FluentMigrator.Tools 更新为 1.0.5.0。这些工具仍为 1.0.3.0。
第二步是更新我的构建文件以引用 .NET 4.0 dll。两者的结合解决了这个问题,但直到我引用了 .NET 4.0 dll 才显示出改进。
这是我当前的 .build 文件以供将来参考:
<project name="Migrations" xmlns="http://nant.sf.net/release/0.85/nant.xsd" default="migrate">
<loadtasks assembly="../packages/FluentMigrator.Tools.1.0.5.0/tools/anycpu/40/FluentMigrator.Nant.dll" />
<target name="migrate" description="Migrate the database">
<property name="version" value="-1" overwrite="false" />
<migrate
database="sqlserver2008"
connection="data source=******; Initial Catalog=*****;User Id=*****; Password=*****;"
target="../Migrations/bin/Debug/Migrations.dll"
verbose="true"
/>
</target>
</project>