Exemplo n.º 1
0
 public MultiItemSolutionRunConfiguration(string id, string name) : base(id, name)
 {
     Items = new StartupItemCollection();
 }
Exemplo n.º 2
0
 public MultiItemSolutionRunConfiguration(MultiItemSolutionRunConfiguration other, string newName = null) : base(newName ?? other.Id, newName ?? other.Name)
 {
     Items = new StartupItemCollection();
     Items.AddRange(other.Items.Select(it => new StartupItem(it.SolutionItem, it.RunConfiguration)));
 }
Exemplo n.º 3
0
 internal MultiItemSolutionRunConfiguration()
 {
     Items = new StartupItemCollection();
 }