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

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指定文件夾內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: