From: http://www.narrange.net/narrangemojo/Forums/Thread.aspx?pageid=1&mid=3&ItemID=3&thread=29
I just found a bug that moves a public static string from one class to another and in the process breaks the build since there is already a string by that name in the class its moved to.
Do any of you know a fix for this bug?
Best Regards
/Nicolaj
Code Before NArrange
class Constants
{
#region Nested Types
public class Fields
{
#region Fields
public static string Subject = "Subject";
#endregion Fields
}
public class IndexFields
{
#region Fields
public static string Path = "path";
public static string StartDate = "StartDate";
public static string Subject = "Subject";
#endregion Fields
}
public class Indexes
{
#region Fields
public static string Calendar = "calendar";
#endregion Fields
}
#endregion Nested Types
}
Code After Narrange
class Constants
{
#region Nested Types
public class Fields
{
#region Fields
public static string Subject = "Subject";
public static string Subject = "Subject";
#endregion Fields
}
public class Indexes
{
#region Fields
public static string Calendar = "calendar";
#endregion Fields
}
public class IndexFields
{
#region Fields
public static string Path = "path";
public static string StartDate = "StartDate";
#endregion Fields
}
#endregion Nested Types
}