PostSharp bot
PostSharp bot
If you include an `// @Include` comment inside a `.Dependency.cs` file, it does nothing, which can be confusing. I think that this should either work, or produce an error. Also...
Only when there is a stable version of Metalama.Backstage (including patch version) higher than the current version of Metalama.Backstage. Display as important message.
This is a proposal, that seems reasonably implementable. We would introduce a new kind of "syntax-aware" aspects, which are part of aspect order, understand the linker, and are able to...
```cs interface IExpression { ref dynamic? Value {get; } // Hiddem from Intellisense dynamic? DynamicValue {get;} } interface IExpression : IExpression { new ref T Value {get; } } ```...
Hidden members are only visible by the current aspect instance. Their name is guaranteed to be unique. Their real visibility is `private` but they are hidden by the code model....
Support for XAML-like events like `FooChanged` for a property named `Foo`. Problem: overriding or generating methods like `OnFooChanged` because their signature have a dependency on Windows.UI.Xaml.Controls. Some abstraction may be...
To analyze the methods called by property getters when they are in the current type. Result of method analysis Foo(this, a, b c) => { "this.A", "a.P" } Invoke method:...