Status: New
Owner: ----
New issue 87 by andresmoschini: Patch to correct msbuild "To" parameter
(timestamp values) in trunk
http://code.google.com/p/migratordotnet/issues/detail?id=87
Index: MigrateTask.cs
===================================================================
--- MigrateTask.cs (revisión: 128)
+++ MigrateTask.cs (copia de trabajo)
@@ -47,7 +47,7 @@
/// </example>
public class Migrate : Task
{
- private int _to = -1; // To last revision
+ private long _to = -1; // To last revision
private string _provider;
private string _connectionString;
private ITaskItem[] _migrationsAssembly;
@@ -98,7 +98,7 @@
get { return _language; }
}
- public int To
+ public long To
{
set { _to = value; }
get { return _to; }
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"migratordotnet-devel" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/migratordotnet-devel?hl=en
-~----------~----~----~----~------~----~------~--~---