Could not load type from assembly error

前端 未结 25 1400
温柔的废话
温柔的废话 2020-11-30 03:30

I have written the following simple test in trying to learn Castle Windsor\'s Fluent Interface:

using NUnit.Framework;
using Castle.Windsor;
using System.Col         


        
25条回答
  •  一生所求
    2020-11-30 04:17

    Adding your DLL to GAC(global assembly cache)

    Visual Studio Command Prompt => Run as Adminstrator

    gacutil /i "dll file path"

    You can see added assembly C:\Windows\system32\

    It Will also solve dll missing or "Could not load file or assembly" in SSIS Script task

提交回复
热议问题