I know that Visual Studio 2017 now supports the lack of a registry, side-by-side installation of all SKUs (Enterprise, Professional, and Community) explanations here .
We need to access the list of VS2017 most used (MRU) solutions and projects.
For the previous version of VS2017, we used a query in the registry for this.
- This registry code always works fine when it is launched from the VS2017 devenv process,
- but it no longer works when it runs in a standalone / custom process (I mean a process that is not a VS2017 devenv process) and this is what we need to do .
Ideally, this can be done from the VS installation API , but I cannot find any sample code.
Otherwise, we can still rely on the RegLoadAppKey () function, as described in this VS 2017, which posted an article about the changes (any code is welcome)
Or maybe there is another API?
Thank you for your help,
visual-studio visual-studio-2017 mru
Patrick from NDepend team
source share