|
@@ -282,6 +282,11 @@ namespace ET
|
|
|
private static Assembly DynamicBuild(ConfigType configType)
|
|
|
{
|
|
|
string classPath = GetClassDir(configType);
|
|
|
+ if (!Directory.Exists(classPath))
|
|
|
+ {
|
|
|
+ Directory.CreateDirectory(classPath);
|
|
|
+ }
|
|
|
+
|
|
|
List<SyntaxTree> syntaxTrees = new List<SyntaxTree>();
|
|
|
List<string> protoNames = new List<string>();
|
|
|
foreach (string classFile in Directory.GetFiles(classPath, "*.cs"))
|