Index: Migration/Scripts/test/Migration.Scripts.Data.TestUtil/TestCreateScript.cs =================================================================== diff -u -r56e690b056dd0901609e651f6ac3c010d3d002b7 -r1141c26fc503c0955645107a51f91c8e5975d606 --- Migration/Scripts/test/Migration.Scripts.Data.TestUtil/TestCreateScript.cs (.../TestCreateScript.cs) (revision 56e690b056dd0901609e651f6ac3c010d3d002b7) +++ Migration/Scripts/test/Migration.Scripts.Data.TestUtil/TestCreateScript.cs (.../TestCreateScript.cs) (revision 1141c26fc503c0955645107a51f91c8e5975d606) @@ -40,7 +40,8 @@ { return new TestVersionedFile { - Location = location + Location = location, + Version = GetVersion() }; } @@ -51,9 +52,14 @@ { public string Location { get; set; } + /// + /// Sets the version for . + /// + public string Version { private get; set; } + public string GetVersion() { - return string.Empty; + return Version; } } }