|
|
@ -85,9 +85,13 @@ namespace ICSharpCode.ILSpy |
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
|
public AssemblyList(AssemblyList list, string newName) |
|
|
|
public AssemblyList(AssemblyList list, string newName) |
|
|
|
: this(newName) |
|
|
|
: this(newName) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
lock (lockObj) |
|
|
|
{ |
|
|
|
{ |
|
|
|
this.assemblies.AddRange(list.assemblies); |
|
|
|
this.assemblies.AddRange(list.assemblies); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
this.dirty = false; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public event NotifyCollectionChangedEventHandler CollectionChanged { |
|
|
|
public event NotifyCollectionChangedEventHandler CollectionChanged { |
|
|
|
add { |
|
|
|
add { |
|
|
|