首頁 > 軟體

C#把dll分別放在指定的資料夾的方法步驟

2022-05-18 19:02:16

C#使用者端程式,生成後是一個exe,如果帶有大量的dll,那麼dll和exe會混亂在一起,看起來非常混亂,我們可以建立一個資料夾,把dll放進去,這樣看起來就非常的清晰美觀。

一共有二種方法

第一種,設定方法。

1.我們建立一個winform程式,對2個dll分別參照,呼叫裡面的方法

生成後的檔案是這樣的

2.開啟App.config資料夾,其中dll和dll/2相當於資料夾

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <startup> 
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
    </startup>
	<runtime>
		<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
			<!--<publisherPolicy apply="yes" />這句不要也是可以的-->
			<probing privatePath="dll;dll/2" />
		</assemblyBinding>
	</runtime>
</configuration>

3.選擇所有的dll,把複製本地設定成 FALSE

4.開啟專案的exe路徑,分別建立dll資料夾,把其中一個dll放進去 

建立dll/2資料夾,把另一個dll放進去

5.資料夾的效果

WindowsFormsApp4.exe

WindowsFormsApp4WindowsFormsApp4.exe.config

dll

...../ClassLibrary1.dll

...../2/ClassLibrary2.dll

6.效果,這樣就比較好看一些。

第二種,程式碼方法

 1.同樣建立一個專案,選擇所有的dll,把複製本地設定成 FALSE

2.在表單的初始化出寫入

AppDomain.CurrentDomain.AssemblyResolve += CurrentDomain_AssemblyResolve;
  static System.Reflection.Assembly CurrentDomain_AssemblyResolve(object sender, ResolveEventArgs args)
        {
            string path = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, @"dll2");
            path = System.IO.Path.Combine(path, args.Name.Split(',')[0]);
            path = String.Format(@"{0}.dll", path);
            return System.Reflection.Assembly.LoadFrom(path);
        }

3.在專案的debug資料夾中,建立程式碼中的名字dll2資料夾,把所有的dll扔進去即可。

 4.程式碼

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
 
namespace WindowsFormsApp1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            AppDomain.CurrentDomain.AssemblyResolve += CurrentDomain_AssemblyResolve;
        }
 
        private void Form1_Load(object sender, EventArgs e)
        {
            ClassLibrary1.Class1 c = new ClassLibrary1.Class1();
            ClassLibrary2.Class1 c1 = new ClassLibrary2.Class1();
 
            MessageBox.Show(c.A() + c1.B());
        }
 
        /// <summary>
        /// 對外解析dll失敗時呼叫
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="args"></param>
        /// <returns></returns>
        static System.Reflection.Assembly CurrentDomain_AssemblyResolve(object sender, ResolveEventArgs args)
        {
            string path = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, @"dll2");
            path = System.IO.Path.Combine(path, args.Name.Split(',')[0]);
            path = String.Format(@"{0}.dll", path);
            return System.Reflection.Assembly.LoadFrom(path);
        }
    }
}

到此這篇關於C#把dll分別放在指定的資料夾的方法步驟的文章就介紹到這了,更多相關C# dll指定資料夾內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com