-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from ArsenShnurkov/external-project-issue
remove-reference command added
- Loading branch information
Showing
19 changed files
with
1,313 additions
and
1,137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,23 @@ | ||
using System.Collections.Generic; | ||
using System.Xml; | ||
|
||
public interface IHaveUnderlyingNode | ||
namespace BuildAutomation | ||
{ | ||
XmlNode UnderlyingNode { get; } | ||
} | ||
using System.Collections.Generic; | ||
using System.Xml; | ||
|
||
public interface ICanHaveProperties : IHaveUnderlyingNode | ||
{ | ||
} | ||
public interface IHaveUnderlyingNode | ||
{ | ||
XmlNode UnderlyingNode { get; } | ||
} | ||
|
||
public interface ICanHaveItems : IHaveUnderlyingNode | ||
{ | ||
} | ||
public interface ICanHaveProperties : IHaveUnderlyingNode | ||
{ | ||
} | ||
|
||
public interface ICanBeConditional | ||
{ | ||
string Condition { get; set; } | ||
} | ||
public interface ICanHaveItems : IHaveUnderlyingNode | ||
{ | ||
} | ||
|
||
public interface ICanBeConditional | ||
{ | ||
string Condition { get; set; } | ||
} | ||
} |
Oops, something went wrong.