Cezary Piątek
Cezary Piątek
I think this can be addressed with [TwinType] attribute https://cezarypiatek.github.io/post/csharp-twin-types/
Have you considered using type inheritance for that? ```cs public abstract record BaseAgent; public record MonsterAgent: BaseAgent { public Monster Monster { get; set; } } public record PlayerAgent :...
Sorry for the late response, I've been thinking a lot about this problem. I could try to implement an analyzer that handles the following syntax ```cs public record AgentUnion {...
@jhf I might want to take a look at this project https://github.com/StefH/AnyOf
@johlju these errors are certainly related to my changes. I asked for help in #241 but nobody respond so far. There is something wrong with CIM object and I can't...
@johlju thanks for help, now I can continue my work with this feature.
+1 I would like to help but I am not sure how this additional options should be provided. Currently all information about authentication are defined as follows ```ps AuthenticationInfo =...
I can take it.
I've started to implement it on my fork https://github.com/cezarypiatek/xWebAdministration but I haven't had time to manage the UT. Btw I think that ` xWebApplication` and `xWebSite` require refactoring because there...
I've got stuck with weird error related to CIM objects. The issue is described in related PR https://github.com/PowerShell/xWebAdministration/pull/408 Can somebody help me with that?