I recently changed my project's dll name from ObjectCreator1.1.dll
to ObjectCreator.dll
. This project also creates an XML documentation (Properties->Compile->Generate XML Documentation file). Now the problem is that I have renamed my assembly name with all the proper steps, and when I compile my project I get the right .dll and .pdb files, but the file name of this XML file is always ObjectCreator1._1.Template.xml
. Is there any way I can rename this file to ObjectCreator.Template.xml
?
I tried compiling my project without "Generate XML Documentation file" checked, and I recompiled after that with the "Generate XML doc file" checked... but somehow it is still taking the old assembly name.
Any idea from where it is taking this old name from or how I can rename it? It is a VB.NET project.