添加删除中间文件的脚本
This commit is contained in:
parent
cc967e59cb
commit
4057881a4f
|
@ -0,0 +1,27 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.Reflection;
|
||||||
|
using System.Text;
|
||||||
|
using System.Linq;
|
||||||
|
using System.IO;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using Microsoft.Win32;
|
||||||
|
using NewLife.Log;
|
||||||
|
using System.Text.RegularExpressions;
|
||||||
|
using System.Threading;
|
||||||
|
using System.Xml;
|
||||||
|
using NewLife.Web;
|
||||||
|
|
||||||
|
namespace NewLife.Reflection
|
||||||
|
{
|
||||||
|
public class ScriptEngine
|
||||||
|
{
|
||||||
|
static void Main()
|
||||||
|
{
|
||||||
|
if(Directory.Exists("ObjD"))Directory.Delete("ObjD",true);
|
||||||
|
if(Directory.Exists("Obj"))Directory.Delete("Obj",true);
|
||||||
|
if(Directory.Exists("List"))Directory.Delete("List",true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,26 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.Reflection;
|
||||||
|
using System.Text;
|
||||||
|
using System.Linq;
|
||||||
|
using System.IO;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using Microsoft.Win32;
|
||||||
|
using NewLife.Log;
|
||||||
|
using System.Text.RegularExpressions;
|
||||||
|
using System.Threading;
|
||||||
|
using System.Xml;
|
||||||
|
using NewLife.Web;
|
||||||
|
|
||||||
|
namespace NewLife.Reflection
|
||||||
|
{
|
||||||
|
public class ScriptEngine
|
||||||
|
{
|
||||||
|
static void Main()
|
||||||
|
{
|
||||||
|
if(Directory.Exists("ObjD"))Directory.Delete("ObjD",true);
|
||||||
|
if(Directory.Exists("Obj"))Directory.Delete("Obj",true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue