I have an assembly, which I have installed in the GAC. There is another assembly in the project called: MyAssembly.XMLSerializers.dll. I now know what this assembly is after reading here: Why does MSBuild put *.XmlSerializers.dll assembly in the root folder of published web application?.
This assembly is not strongly typed so I cannot add it to the GAC as it stands. Is there a way of strongly typing this assembly in Visual Studio i.e. without manually decompiling it signing it and then compiling it again.
I know how to mark a DLL as signed (by decompiling it and recompiling it). I was wandering if there was a way of visual studio signing the DLL when it generates it.