最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

c#項(xiàng)目將dll打包到exe中的步驟

 更新時(shí)間:2021年04月02日 11:58:07   作者:zls365  
這篇文章主要介紹了c#項(xiàng)目將dll打包到exe中的步驟,幫助大家更好的理解和學(xué)習(xí)使用c#,感興趣的朋友可以了解下

意圖:

想將項(xiàng)目用到的兩個(gè)dll庫文件(CryptEnDe.dll和ICSharpCode.SharpZipLib.dll)一同編譯進(jìn)exe中,并編譯后僅一個(gè)exe程序就可以獨(dú)立運(yùn)行不再需要其它文件。

實(shí)現(xiàn):

1、將兩個(gè)dll庫文件作為資源文件添加進(jìn)項(xiàng)目中;

2、添加功能代碼

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Reflection;
using System.IO;
 
 
namespace AutoUpdateServer.Core
{
  /// <summary> 載入資源中的動(dòng)態(tài)鏈接庫(dll)文件
  /// </summary>
  static class LoadResourceDll
  {
    static Dictionary<string, Assembly> Dlls = new Dictionary<string, Assembly>();
    static Dictionary<string, object> Assemblies = new Dictionary<string, object>();
 
 
    static Assembly AssemblyResolve(object sender, ResolveEventArgs args)
    {
      //程序集
      Assembly ass;
      //獲取加載失敗的程序集的全名
      var assName = new AssemblyName(args.Name).FullName;
      //判斷Dlls集合中是否有已加載的同名程序集
      if (Dlls.TryGetValue(assName, out ass) && ass != null)
      {
        Dlls[assName] = null;//如果有則置空并返回
        return ass;
      }
      else
      {
        throw new DllNotFoundException(assName);//否則拋出加載失敗的異常
      }
    }
 
 
    /// <summary> 注冊資源中的dll
    /// </summary>
    public static void RegistDLL()
    {
      //獲取調(diào)用者的程序集
      var ass = new StackTrace(0).GetFrame(1).GetMethod().Module.Assembly;
      //判斷程序集是否已經(jīng)處理
      if (Assemblies.ContainsKey(ass.FullName))
      {
        return;
      }
      //程序集加入已處理集合
      Assemblies.Add(ass.FullName, null);
      //綁定程序集加載失敗事件(這里我測試了,就算重復(fù)綁也是沒關(guān)系的)
      AppDomain.CurrentDomain.AssemblyResolve += AssemblyResolve;
      //獲取所有資源文件文件名
      var res = ass.GetManifestResourceNames();
      foreach (var r in res)
      {
        //如果是dll,則加載
        if (r.EndsWith(".dll", StringComparison.OrdinalIgnoreCase))
        {
          try
          {
            if (r.Contains("CryptEnDe.dll") 
              || r.Contains("CryptEnDe_d.dll"))
            {
              ExtractResourceToFile(r, PathUtils.GetUpdateDllPath() + @"/" + r.Substring(r.IndexOf('.') + 1));
            }
 
 
            var s = ass.GetManifestResourceStream(r);
            var bts = new byte[s.Length];
            s.Read(bts, 0, (int)s.Length);
            var da = Assembly.Load(bts);
            //判斷是否已經(jīng)加載
            if (Dlls.ContainsKey(da.FullName))
            {
              continue;
            }
            Dlls[da.FullName] = da;
          }
          catch(Exception e)
          {
            //加載失敗就算了...
          }
        }
      }
    }
 
 
    private static void ExtractResourceToFile(string resourceName, string filename)
    {
      //if (!System.IO.File.Exists(filename))
      {
        using (System.IO.Stream s = System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream(resourceName))
        {
          using (System.IO.FileStream fs = new System.IO.FileStream(filename, System.IO.FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite))
          {
            byte[] b = new byte[s.Length];
            s.Read(b, 0, b.Length);
            fs.Write(b, 0, b.Length);
          }
        }
      }
    }
 
 
  }
}

其中PathUtils.GetUpdateDllPath()函數(shù)為獲取dll釋放的路徑,根據(jù)自己需要指定路徑

public static string GetUpdateDllPath()
{
  string strPath = @"C:/LTShiyi/cache/updatedll";
  if (!Directory.Exists(strPath))
  {
    Directory.CreateDirectory(strPath);
  }
 
   return strPath;
}

3、在程序入口Program類中調(diào)用上面的接口函數(shù)

static Program()
{
  AutoUpdateServer.Core.LoadResourceDll.RegistDLL();
}

4、編譯即可。

以上就是c#項(xiàng)目將dll打包到exe中的步驟的詳細(xì)內(nèi)容,更多關(guān)于c# dll打包到exe的資料請關(guān)注腳本之家其它相關(guān)文章!

相關(guān)文章

最新評論

灵寿县| 雅江县| 红原县| 大足县| 固安县| 阳新县| 清流县| 仙桃市| 安福县| 南充市| 定结县| 鹰潭市| 阳新县| 云南省| 陆河县| 彰化市| 瑞金市| 星子县| 五莲县| 凤冈县| 蓝田县| 五指山市| 永康市| 永春县| 庆安县| 瓦房店市| 杭锦后旗| 乌拉特后旗| 柯坪县| 邯郸县| 新疆| 杨浦区| 屏边| 威信县| 天门市| 亳州市| 西乌| 哈巴河县| 依兰县| 宁明县| 新密市|