8 lines
162 B
C#
8 lines
162 B
C#
namespace Needle.Engine
|
|
{
|
|
public interface IBuildConfigProperty
|
|
{
|
|
string Key { get; }
|
|
object GetValue(string projectDirectory);
|
|
}
|
|
} |