Could not load type from assembly error

前端 未结 25 1391
温柔的废话
温柔的废话 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:16

    I experienced the same as above after removing signing of assemblies in the solution. The projects would not build.

    I found that one of the projects referenced the StrongNamer NuGet package, which modifies the build process and tries to sign non-signed Nuget packages.

    After removing the StrongNamer package I was able to build the project again without signing/strong-naming the assemblies.

提交回复
热议问题