implemented resource parser logic as a test spike

This commit is contained in:
Christian Resma Helle
2012-11-07 22:53:54 +01:00
parent 79fe714b5b
commit 1559769152
30 changed files with 16298 additions and 144 deletions
@@ -0,0 +1,10 @@
using System.Collections.Generic;
namespace ChristianHelle.DeveloperTools.CodeGenerators.Resw.CustomTool
{
public interface IResourceParser
{
string ReswContent { get; set; }
List<ResourceItem> Parse();
}
}