• 把DLL文件打包进EXE的技巧


    用VS2005建立一个windows项目,取名test
    引用dll文件
    编写代码,正常引用dll里的类库,
    同时在test项目添加资源文件(该文件就是刚才引用的dll文件)


    VS2005会自动生成引用代码,我这里引用的是IrisSkin2.dll
    internal static byte[] IrisSkin2
    {
        get{object obj = ResourceManager.GetObject("IrisSkin2", resourceCulture);return ((byte[])(obj));}
    }


    然后在Main(program.cs)函数里加入代码
    static void Main()
    {
        Application.EnableVisualStyles();
        Application.SetCompatibleTextRenderingDefault(false);
        string path = Application.StartupPath + "\";
        string dllFileName = "IrisSkin2.dll";
        //******加载IrisSkin2.dll******
        if (!File.Exists(path + dllFileName))   //文件不存在
        {
            FileStream fs = new FileStream(path + dllFileName, FileMode.CreateNew, FileAccess.Write);
            byte[] buffer = GetData.Properties.Resources.IrisSkin2;//{GetData是命名空间}
            fs.Write(buffer, 0, buffer.Length);
            fs.Close();
        }
        //*****************************
        Application.Run(new GDForm());
    }
    编译test项目,生成exe文件,
    然后删除引用的dll文件(注意是先编译,再删除)
    复制该exe文件就可以在别的地方运行了(不用dll,运行EXE会自动生成DLL文件)

    本文来自德仔工作室 http://www.dezai.cn/Channel/Web/ArticleShow.aspx?AI=58892

  • 相关阅读:
    git clone SSL error解决
    day11_文件读写
    python练习day0120
    day12_文件读写_return
    GIS开发常用算法原理分析
    SoapToolkit3.0分发技术
    平台符合性审查测试工具安装教程
    MapX编程详解(C++)MapX发布技术
    Google地图定位偏移矫正
    串口通信编程多线程异步方式
  • 原文地址:https://www.cnblogs.com/haoliansheng/p/1511092.html
Copyright © 2020-2023  润新知