91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

c#項目將dll打包到exe中的步驟是什么

發布時間:2021-04-06 10:14:00 來源:億速云 閱讀:225 作者:小新 欄目:開發技術

這篇文章將為大家詳細講解有關c#項目將dll打包到exe中的步驟是什么,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

意圖:

想將項目用到的兩個dll庫文件(CryptEnDe.dll和ICSharpCode.SharpZipLib.dll)一同編譯進exe中,并編譯后僅一個exe程序就可以獨立運行不再需要其它文件。

實現:

1、將兩個dll庫文件作為資源文件添加進項目中;

2、添加功能代碼

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Reflection;
using System.IO;
 
 
namespace AutoUpdateServer.Core
{
  /// <summary> 載入資源中的動態鏈接庫(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()
    {
      //獲取調用者的程序集
      var ass = new StackTrace(0).GetFrame(1).GetMethod().Module.Assembly;
      //判斷程序集是否已經處理
      if (Assemblies.ContainsKey(ass.FullName))
      {
        return;
      }
      //程序集加入已處理集合
      Assemblies.Add(ass.FullName, null);
      //綁定程序集加載失敗事件(這里我測試了,就算重復綁也是沒關系的)
      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);
            //判斷是否已經加載
            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()函數為獲取dll釋放的路徑,根據自己需要指定路徑

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

3、在程序入口Program類中調用上面的接口函數

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

4、編譯即可。

關于“c#項目將dll打包到exe中的步驟是什么”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

龙胜| 水城县| 巴彦淖尔市| 平潭县| 敦化市| 涟源市| 青岛市| 余姚市| 疏勒县| 巩义市| 长治市| 信宜市| 托里县| 汶上县| 郁南县| 丰宁| 清水河县| 和平县| 冕宁县| 湾仔区| 磴口县| 靖宇县| 金门县| 玉山县| 建阳市| 镇赉县| 西盟| 图木舒克市| 东海县| 广饶县| 夏邑县| 老河口市| 溧阳市| 女性| 当阳市| 宁武县| 乌鲁木齐市| 富川| 漯河市| 新宾| 凤城市|