Unity application block 2.0 - The given assembly name or codebase was invalid

前端 未结 7 1590
-上瘾入骨i
-上瘾入骨i 2021-01-04 03:26

Interfaces (In the assembly named \"Interfaces\". In project :- Interfaces)

namespace Interfaces
{
    public interface IDoSomeWork1
    {
          


        
7条回答
  •  既然无缘
    2021-01-04 04:12

    If you connect up the domain AssemblyResolve event you can get the assembly that has failed to bind.

     AppDomain.CurrentDomain.AssemblyResolve += new ResolveEventHandler(CurrentDomain_AssemblyResolve);
    

提交回复
热议问题