Replies: 2 comments 4 replies
-
After looking at the code, the issue is the properties of the The implementations seem to be generated in A solution would have to add a reference to an assembly containing the attribute implementation and emit the attribute on the interface members. Emitting the attributes would apparently be possible in the above Any pointers on how this could be implemented in a generic way, that does not interfere with the plain generator, would be appreciated. |
Beta Was this translation helpful? Give feedback.
-
Hello -- apologies for my late response; I've been out of the country on vacation. Are you worried about all members of the Regarding Here are a few questions at the top of my mind:
|
Beta Was this translation helpful? Give feedback.
-
I've been using FlatSharp for years now for internal company tooling. I'm using PowerShell 7 cmdlets to expose and manipulate flatbuffers through FlatSharp. This has the downside of also exposing the FlatSharp internal properties to the shell.
We are moving to expose this to external users so I need to find a way to hide these unexpected (for the user) properties.
My first thought was to inject custom attributes (i.e. that will cause PS to hide these properties by default) on the internal FlatSharp properties, is there a way to achieve this today?
Are there other ways to solve this. I could try to contribute but some guidance on how to implement it would be appreciated.
Beta Was this translation helpful? Give feedback.
All reactions