diff --git a/test/Microsoft.AspNet.Authentication.Test/OpenIdConnect/InMemoryLoggerFactory.cs b/test/Microsoft.AspNet.Authentication.Test/OpenIdConnect/InMemoryLoggerFactory.cs index aaa1e975da..bd65d09de5 100644 --- a/test/Microsoft.AspNet.Authentication.Test/OpenIdConnect/InMemoryLoggerFactory.cs +++ b/test/Microsoft.AspNet.Authentication.Test/OpenIdConnect/InMemoryLoggerFactory.cs @@ -1,6 +1,7 @@ // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. +using System; using Microsoft.Framework.Logging; namespace Microsoft.AspNet.Authentication.Tests.OpenIdConnect @@ -31,6 +32,10 @@ namespace Microsoft.AspNet.Authentication.Tests.OpenIdConnect return _logger; } + public void Dispose() + { + } + public InMemoryLogger Logger { get { return _logger; } } } }