Resolve GuidList while creating visual studio extensions options page?

Harshad Patil 1 Reputation point
2021-09-10T07:27:10.793+00:00

I am trying to create a extension in visual studio 2017 involving a custom options page as per the documentation mentioned at https://learn.microsoft.com/en-us/visualstudio/extensibility/creating-an-options-page?view=vs-2017

But I am not able to resolve the 'GuidList' being used in attribute [Guid(GuidList.guidMyToolsOptionsPkgString)] It is mentioned that GuidList resides in the assembly Microsoft.VisualStudio.Data.Schema.Project.dll.

But where do I find his assembly? Its not present in visual studio 2017 installation it seems!

Not Monitored
Not Monitored
Tag not monitored by Microsoft.
35,882 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Sergey Vlasov 266 Reputation points
    2021-09-11T05:02:34.163+00:00

    GuidList is your class that holds your guids in one place. You can provide options pkg string directly without it if you want.

    0 comments No comments