You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm sure I'm the last visual basic programmer on the planet, but now this class is crashing as VB can't handle there being a query property and a Query property.
The text was updated successfully, but these errors were encountered:
@dg107 Can you confirm, is it just the GraphRequest class that breaks in Visual Basic because of the duplicate property names? Would you be open to adding a compiler constant to your build that disables the duplicate properties in that class?
I'm thinking about doing something like this, temporarily:
publicclassGraphRequest{
#if !SHOPIFYSHARP_VB_MODE[Obsolete("This property is deprecated, use "+nameof(Query)+" instead.")]publicstringquery{get;set;}
#endif
publicstringQuery{get;set;}}
Then you could set SHOPIFYSHARP_VB_MODE=true inside your vbproj file:
From #1051:
The text was updated successfully, but these errors were encountered: