InvalidOperationException: ValueFactory attempted to access the Value property of this instance.
循環参照が起きてます。
public class Hoge
{
[Inject]
public Hoge(Fuga f)
{
}
}
public class Fuga
{
[Inject]
public Fuga(Hoge h)
{
}
}
参照関係を見直してください。無理な場合は何らかのmessage systemを導入して解決します(MessagePipeとか