Fixed build break.
- IScopedInstance now implements IDisposable.
This commit is contained in:
parent
5e69d90076
commit
48a1cbb0e5
|
|
@ -8,5 +8,9 @@ namespace Microsoft.AspNet.Mvc
|
|||
public class MockScopedInstance<T> : IScopedInstance<T>
|
||||
{
|
||||
public T Value { get; set; }
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue