狠狠色丁香婷婷综合尤物/久久精品综合一区二区三区/中国有色金属学报/国产日韩欧美在线观看 - 国产一区二区三区四区五区tv

LOGO OA教程 ERP教程 模切知識(shí)交流 PMS教程 CRM教程 開(kāi)發(fā)文檔 其他文檔  
 
網(wǎng)站管理員

嵌入Dll 到.net 程序中的方法

admin
2021年1月29日 15:21 本文熱度 3384
我們經(jīng)常會(huì)寫(xiě)一些小程序給自己或者他人用,而這些程序時(shí)長(zhǎng)又會(huì)去引用一些第三方的Dll,比如開(kāi)源的ICSharpCode.SharpZipLib.dll等。為了讓程序保持整潔,或者給對(duì)方的時(shí)候方便,就想把這些dll給嵌入到EXE中去,這樣在不打包的情況下,只要丟一個(gè)文件給對(duì)方就能用了。最近研究了下可行性,目前有如下幾種方法:
  1. 方法1:把相關(guān)的第三方dll作為程序資源嵌入到EXE中,在程序運(yùn)行的時(shí)候,從資源文件中輸出到程序執(zhí)行目錄即可。

    (圖1:示例項(xiàng)目,ThirdPartydlldemo.dll作為第三方資源,Build Action屬性設(shè)置為" Embedded Resource")

    然后在Program.cs里面聲明個(gè)靜態(tài)構(gòu)造函數(shù),在該方法里面把第三方dll輸出到程序目錄,這樣在調(diào)用第三方dll方法的時(shí)候,相關(guān)環(huán)境已經(jīng)初始化完畢了。

       1: private static void ExtractResourceToFile(string resourceName, string filename)
       2:    {
       3:          if (!System.IO.File.Exists(filename))
       4:             using (System.IO.Stream s = System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream(resourceName))
       5:             usng (System.IO.FileStream fs = new System.IO.FileStream(filename, System.IO.FileMode.Create))
       6:             {
       7:                    byte[] b = new byte[s.Length];
       8:                    s.Read(b, 0, b.Length);
       9:                    fs.Write(b, 0, b.Length);
      10:              }
      11:     }

     

       1: static Program()
       2:       {
       3:           ExtractResourceToFile("EmbeddedDLL2ExeDemo.ThirdPartyDllDemo.dll",
       4:               "ThirdPartyDllDemo.dll");
       5:       }

    這樣就ok了。

  2. 方法2:是用Ilmerge這個(gè)微軟提供的工具,直接把相關(guān)的dll嵌入到目標(biāo)exe中,而且程序運(yùn)行時(shí)候,不像方法1會(huì)把相關(guān)的dll輸出到可執(zhí)行目錄下,它直接讓.net運(yùn)行時(shí)到程序的資源中去找相關(guān)的dll引用,以下是Ilmerge的介紹:

    This document describes the ILMerge utility which merges multiple .NET assemblies into a single assembly. However, some .NET assemblies may not be able to be merged because they may contain features such as unmanaged code. I would highly recommend using peverify (the .NET Framework SDK tool) on the output of ILMerge to guarantee that the output is verifiable and will load in the .NET runtime.

    ILMerge is packaged as a console application. But all of its functionality is also accessible programmatically. Note that Visual Studio does allow one to add an executable as a reference, so you can write a client that uses ILMerge as a library.

    ILMerge takes a set of input assemblies and merges them into one target assembly. The first assembly in the list of input assemblies is the primary assembly. When the primary assembly is an executable, then the target assembly is created as an executable with the same entry point as the primary assembly. Also, if the primary assembly has a strong name, and a .snk file is provided, then the target assembly is re-signed with the specified key so that it also has a strong name.

    Note that anything that depended upon any of the names of the input assemblies, e.g., configuration files, must be updated to refer instead to the name of the target assembly.

    Any Win32 Resources in the primary assembly are copied over into the target assembly.

    There are many options that control the behavior of ILMerge. These are described in the next section.

    Ilmerge 相關(guān)的命令行參數(shù)是:

    ilmerge [/lib:directory]* [/log[:filename]] [/keyfile:filename [/delaysign]] [/internalize[:filename]] [/t[arget]:(library|exe|winexe)] [/closed] [/ndebug] [/ver:version] [/copyattrs [/allowMultiple]] [/xmldocs] [/attr:filename] ([/targetplatform:<version>[,<platformdir>]]|v1|v1.1|v2|v4) [/useFullPublicKeyForReferences] [/zeroPeKind] [/wildcards] [/allowDup[:typename]]* [/allowDuplicateResources] [/union] [/align:n] /out:filename <primary assembly> [<other assemblies>...]

    其中目標(biāo)exe或者程序集,要放在輸入的程序集里面的第一位置,其他dll放在它之后,其中/out:參數(shù)是必須的,其他參數(shù)可以參考文檔。

    如圖1 示例,命令行參數(shù)是:

    ilmerge EmbeddedDLL2ExeDemo.exe ThirdPartyDllDemo.dll /ndebug /out:EmbeddedDll2Ex
    eDemo.exe

    這樣即可,該方法比方法1更完美,不過(guò)這個(gè)Ilmerge 在使用的時(shí)候還有一些不足的地方,比如/ver:version這個(gè)參數(shù)設(shè)置后沒(méi)有效果;

    ilmerge就用自己把它引用到的兩個(gè)dll嵌軟到它自身里面了。

方法3:使用.Net混淆器都附帶這樣的功能,可以把多個(gè)dll整合到一個(gè)可執(zhí)行文件中。

該文章在 2021/1/29 15:21:06 編輯過(guò)

全部評(píng)論2

admin
2021年1月29日 15:24
 不需要寫(xiě)入文件之后再加載。可以直接通過(guò)流內(nèi)數(shù)據(jù)加載。

byte[] assembly = File.ReadAllBytes(path);

//app domain load
AppDomain appDomain = AppDomain.CreateDomain("Test Domain");
loadedAssembly = appDomain.Load(assembly);
obj = loadedAssembly.CreateInstance("ClassLibrary1.Class1");
mInfo = obj.GetType().GetMethod("SayHello");
result = mInfo.Invoke(obj, null);
Console.WriteLine("Result: {0}", result.ToString());

//Assembly load sample
loadedAssembly = Assembly.Load(assembly);
obj = loadedAssembly.CreateInstance("ClassLibrary1.Class1");
mInfo = obj.GetType().GetMethod("SayHello");
result = mInfo.Invoke(obj, null);
Console.WriteLine("Result: {0}", result.ToString());
admin
2021年1月29日 15:24
反射比文件流更好些

該評(píng)論在 2021/1/29 15:24:41 編輯過(guò)
關(guān)鍵字查詢
相關(guān)文章
正在查詢...
點(diǎn)晴ERP是一款針對(duì)中小制造業(yè)的專業(yè)生產(chǎn)管理軟件系統(tǒng),系統(tǒng)成熟度和易用性得到了國(guó)內(nèi)大量中小企業(yè)的青睞。
點(diǎn)晴PMS碼頭管理系統(tǒng)主要針對(duì)港口碼頭集裝箱與散貨日常運(yùn)作、調(diào)度、堆場(chǎng)、車(chē)隊(duì)、財(cái)務(wù)費(fèi)用、相關(guān)報(bào)表等業(yè)務(wù)管理,結(jié)合碼頭的業(yè)務(wù)特點(diǎn),圍繞調(diào)度、堆場(chǎng)作業(yè)而開(kāi)發(fā)的。集技術(shù)的先進(jìn)性、管理的有效性于一體,是物流碼頭及其他港口類企業(yè)的高效ERP管理信息系統(tǒng)。
點(diǎn)晴WMS倉(cāng)儲(chǔ)管理系統(tǒng)提供了貨物產(chǎn)品管理,銷售管理,采購(gòu)管理,倉(cāng)儲(chǔ)管理,倉(cāng)庫(kù)管理,保質(zhì)期管理,貨位管理,庫(kù)位管理,生產(chǎn)管理,WMS管理系統(tǒng),標(biāo)簽打印,條形碼,二維碼管理,批號(hào)管理軟件。
點(diǎn)晴免費(fèi)OA是一款軟件和通用服務(wù)都免費(fèi),不限功能、不限時(shí)間、不限用戶的免費(fèi)OA協(xié)同辦公管理系統(tǒng)。
Copyright 2010-2025 ClickSun All Rights Reserved