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
Error CS0508
'RuntimeArea.RegisterCallback(Action)': return type must be 'DeferredCallback' to match overridden member 'ContainerBuilder.RegisterCallback(Action)'
...
Original:
public sealed override void RegisterCallback(Action<IComponentRegistry> configurationCallback)
{
base.RegisterCallback(configurationCallback);
}
Expected:
public sealed override DeferredCallback RegisterCallback(Action<IComponentRegistry> configurationCallback)
{
return base.RegisterCallback(configurationCallback);
}
My question is about wether or not anyone else is getting this error. It's possible that I restored the wrong versions of the NuGet packages. In this case it's an Autofac dependency.
The text was updated successfully, but these errors were encountered:
When I load Totem.Runtime from a freshly cloned repository I get the following error:
Project: Totem.Runtime
File: F:\Code\Interview.Rover\Totem-dev\Source\Totem.Runtime\RuntimeArea.cs
Line: 109
My question is about wether or not anyone else is getting this error. It's possible that I restored the wrong versions of the NuGet packages. In this case it's an Autofac dependency.
The text was updated successfully, but these errors were encountered: