I tried to rename a document in a project with the following two `IVsRunningDocumentTable::RenameDocument` and `VsShellUtillities::RenameDocument`, however both of them just created a new file with the new content, but the old file didn't got removed?
IVsRunningDocumentTable::RenameDocument(fullName, newFullName, VSConstants.HIERARCHY_DONTCHANGE, VSConstants.VSITEMID_NIL);
The other one got invoked quite similar. Is there any alternative to that or is there anything wrong with the current code?