-
Hey @sotteson1, the DIA SDK metadata generation sample emits a SymTagEnum enumeration with an identically named enumerator as such: enum SymTagEnum
{
// ...
SymTagEnum,
// ...
}; As you can imagine, this poses some challenges with codegen. I created a local
But this renames both the enumeration and the problematic enumerator. Thoughts? |
Beta Was this translation helpful? Give feedback.
Answered by
riverar
Nov 17, 2021
Replies: 1 comment 2 replies
-
I manage to work around this with several files. options.rsp
dia.manual.cs using Windows.Win32.Foundation;
using Windows.Win32.Interop;
namespace Microsoft.Dia
{
public enum SymTag
{
// ...
}
} Am still interested in your thoughts. Thanks! |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
sotteson1
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I manage to work around this with several files.
options.rsp
dia.manual.cs
Am still interested in your thoughts. Thanks!