“Symbols for the module MyLibrary.dll were not loaded”?

后端 未结 13 1705
误落风尘
误落风尘 2021-02-18 13:19

I\'m trying to learn Windows Phone dev by making a basic app that provides information about Pokemon. To do this, I\'ve created a portable class library (PokeLib.dll) so it\'s

13条回答
  •  孤街浪徒
    2021-02-18 13:40

    I was having this error when I had an assembly that was in the GAC and Visual Studio was not removing it before compile/debug. I was able to resolve it by removing that library (dll) from the GAC.

    //if pokelib.dll contained assembly: PokeLibrary.Pokemon 
    //and it showed up in the GAC (c:\windows\assembly\) with that assembly name
    gacutil /u PokeLibrary.Pokemon
    

    This resolved the warning condition and allowed me to debug once again.

提交回复
热议问题