1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00

move templates into CLR directory (not C# specific)

This commit is contained in:
Kevin Glynn 2010-07-15 14:17:20 -05:00
parent ae4f47d268
commit da70cd4b9a

View File

@ -261,13 +261,13 @@ namespace RusticiSoftware.Translator.CLR
switch (reader.LocalName) switch (reader.LocalName)
{ {
case "Class": case "Class":
typeType = "RusticiSoftware.Translator.ClassRepTemplate"; typeType = "RusticiSoftware.Translator.CLR.ClassRepTemplate";
break; break;
case "Interface": case "Interface":
typeType = "RusticiSoftware.Translator.InterfaceRepTemplate"; typeType = "RusticiSoftware.Translator.CLR.InterfaceRepTemplate";
break; break;
case "Enum": case "Enum":
typeType = "RusticiSoftware.Translator.EnumRepTemplate"; typeType = "RusticiSoftware.Translator.CLR.EnumRepTemplate";
break; break;
default: default:
typeType = "UnknownType"; typeType = "UnknownType";