Skip to content

Commit

Permalink
Merge pull request #25 from ArsenShnurkov/external-project-issue
Browse files Browse the repository at this point in the history
remove-reference command added
  • Loading branch information
ArsenShnurkov authored Jun 2, 2017
2 parents 92b9ac4 + 3fde041 commit c5a6f4f
Show file tree
Hide file tree
Showing 19 changed files with 1,313 additions and 1,137 deletions.
34 changes: 18 additions & 16 deletions mpt-core/03_msbuild/ICan.cs
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; }
}
}
Loading

0 comments on commit c5a6f4f

Please sign in to comment.