C#动态编译

公司需要自己做一个打包程序,将需要升级文件和脚本做成一个exe安装包,双击exe安装包的时候输入相关的参数就执行升级(文件覆盖和脚本执行),大概思路如下:
1.先把exe的逻辑写好,包括提取文件和脚本执行代码
2.exe从资源中提取文件和脚本
3.组包程序将需要升级的脚本和文件加入到exe的资源文件,然后编译成exe。

exe的核心代码如下:

if (!Directory.Exists("myFile"))
{
    Directory.CreateDirectory("myFile");
}

//获取资源文件并输出到myFile文件夹
Assembly assm = Assembly.GetExecutingAssembly();
foreach (var item in assm.GetManifestResourceNames())
{
    Stream stream = assm.GetManifestResourceStream(item);
    byte[] bs = new byte[stream.Length];
    stream.Read(bs, 0, bs.Length);
    File.WriteAllBytes("myFile\\" + item, bs);
    this.textBox1.AppendText("成功提取文件:" + item + "\r\n");
}
this.textBox1.AppendText("文件保存在:"+AppDomain.CurrentDomain.BaseDirectory+"\\myFile");
string result = string.Join("*", assm.GetManifestResourceNames());
MessageBox.Show("成功," + result);


组包的核心代码如下:

CSharpCodeProvider p = new CSharpCodeProvider();

// 设置编译参数
CompilerParameters options = new CompilerParameters();

//加入引用的程序集
options.ReferencedAssemblies.Add("System.dll");
options.ReferencedAssemblies.Add("System.Windows.Forms.dll");
options.ReferencedAssemblies.Add("System.Drawing.dll");

options.GenerateExecutable = true;                  //是否生成可执行文件,否则就是内存中
// CompilerOptions 参考地址:https://docs.microsoft.com/zh-cn/dotnet/csharp/language-reference/compiler-options/addmodule-compiler-option
options.CompilerOptions = "-t:winexe";              //非控制台应用程序
options.CompilerOptions += " -win32icon:index.ico"; //设置图标
options.OutputAssembly = "HelloWorld.exe";          //输出exe的名称
options.MainClass = "TestPackage.Program";          //主运行类

//循环加入资源文件,貌似不支持文件夹,因此多个文件可以自己压缩为zip再加入
foreach (var file in this.listBox1.Items)
{
    options.EmbeddedResources.Add(file.ToString());
}

// 开始编译
string[] files = new string[]{
    @"..\..\..\TestPackage\Program.cs",
    @"..\..\..\TestPackage\MainForm.cs"
};
CompilerResults cr = p.CompileAssemblyFromFile(options, files);

// 显示编译信息
if (cr.Errors.Count == 0)
{
    Console.WriteLine("{0} compiled ok!", cr.CompiledAssembly.Location);
    MessageBox.Show("成功");
}
else
{
    Console.WriteLine("Complie Error:");
    foreach (CompilerError error in cr.Errors)
        Console.WriteLine("  {0}", error);
    MessageBox.Show("失败");
}

Console.WriteLine("Press Enter key to exit...");

 

有了核心代码,后面的就可以自己去实现文件的加入和提取了。

转载于:https://www.cnblogs.com/duanjt/p/10875163.html

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值