Index: Migration/Scripts/src/Migration.Scripts.Data/MigrationScript.cs =================================================================== diff -u -rf5120263f838eaf211d8f73ca08a78c22e9777fb -r07ab02003751f717e8534ff7392cb915efcdc3b8 --- Migration/Scripts/src/Migration.Scripts.Data/MigrationScript.cs (.../MigrationScript.cs) (revision f5120263f838eaf211d8f73ca08a78c22e9777fb) +++ Migration/Scripts/src/Migration.Scripts.Data/MigrationScript.cs (.../MigrationScript.cs) (revision 07ab02003751f717e8534ff7392cb915efcdc3b8) @@ -74,13 +74,13 @@ } /// - /// Uses to upgrade to a new . + /// Uses to upgrade to a new . /// /// - /// The upgraded . + /// The upgraded . /// Thrown when is null. /// Thrown when migration failed. - public VersionedFile Upgrade(VersionedFile sourceVersionedFile) + public IVersionedFile Upgrade(IVersionedFile sourceVersionedFile) { if (sourceVersionedFile == null) { @@ -90,7 +90,7 @@ try { - VersionedFile newVersionedFile = createScript.CreateEmptyVersionedFile(newLocation); + IVersionedFile newVersionedFile = createScript.CreateEmptyVersionedFile(newLocation); upgradeScript.Upgrade(sourceVersionedFile, newVersionedFile); return newVersionedFile; }