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
partial class Build : NukeBuild, IHazRepository
{
public void M()
{
// without source generator
var r1 = ((T)(object)this).Repository;
// with source generator
var r2 = IHazRepository.Repository;
}
}
Generated code
partial class Build
{
// for all interfaces deriving from INukeBuild
protected IHazRepository IHazRepository => this;
}
Usage Example
No response
Alternative
No response
The text was updated successfully, but these errors were encountered:
Description
Generated code
Usage Example
No response
Alternative
No response
The text was updated successfully, but these errors were encountered: