简体   繁体   中英

Does Visual Studio 2019 support 64 bit custom visualizer?

I have a special type to display but the type require a 64bit dll thus I have to compile the custom visualizer in x64. However I got bad image error when viewing the variable. Does visual studio 2019 support for visualizer compile in 64 bit mode? Or because VS is 32 bit program thus the visualizer also require to be 32 bit?

The Visual Studio IDE is 32bit (and because of the many existing extensions and the long history of the Visual Studio IDE this is not going to chance easily).

So any extensions, including custom visualisers, need to be 32bit.

If you cannot get a 32bit build of your dll, then you would need to have some kind of container process and then communicate with that (this is unlikely to be easy, because none of the internal APIs would be accessible to the helper process).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM