visual studio - VSIX how to order my classifier provider in respect to other installed extension -
i developed toy vsix extension. implements classifier f# source files. in meantime guys fsharp power tools upgraded extension offer syntax highlighting f# files.
now in vs 2013 classifier run before theirs, , consequently overriding coloring.
is there way order classifier on respect another? did not find info googling.
thanks
unfortunately there no way this. classification form of tagging , tagging unordered in visual studio. editor runs import tagging implementations , defaults mef import ordering.
many hooks in visual studio can ordered using [order]
attribute. typically listed part of documentation on msdn. not classification / tagging , checked implementation make sure wasn't oversight (it wasn't).
Comments
Post a Comment