I developped an extension with SchemaImporterExtension.
It works well, but the deployement is very, very, very tedious to use a politically correct term.
I copy the dll into PrivateAssemblies folder and then add a declaration into devenv.exe.config like this:
<system.xml.serialization>
<
schemaImporterExtensions>
<
add name="HelpdeskSchemaImporterExtension"type="VisualStudioHelpers.Proxy.HelpdeskSchemaImporterExtension,
VisualStudioHelpers,
Version=1.1.0.0,
Culture=neutral , PublicKeyToken=e0c3cbdd6d16c053" />
</
schemaImporterExtensions></system.xml.serialization>
But the problem is that I have to reboot several times VS and the computer to convince VS to use the new version everytime I make a modification.
Is there another way to make this deplyement that works better? I don't want to change machine.config
Thank you