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 @@
namespace ChristianHelle.DeveloperTools.CodeGenerators.Resw.CustomTool
{
public class CodeGeneratorFactory
{
public ICodeGenerator Create(string defaultNamespace, string inputFileContents)
{
return null;
}
}
}