Fixed build break.

- IScopedInstance now implements IDisposable.
This commit is contained in:
N. Taylor Mullen 2015-02-16 13:08:10 -08:00
parent 5e69d90076
commit 48a1cbb0e5
1 changed files with 4 additions and 0 deletions

View File

@ -8,5 +8,9 @@ namespace Microsoft.AspNet.Mvc
public class MockScopedInstance<T> : IScopedInstance<T>
{
public T Value { get; set; }
public void Dispose()
{
}
}
}