From 289182b8728a4cccfd59844b0f0efdefeb6c678d Mon Sep 17 00:00:00 2001 From: Kiran Challa Date: Tue, 11 Aug 2015 15:02:27 -0700 Subject: [PATCH] Reacting to disposable logger provider --- .../OpenIdConnect/InMemoryLoggerFactory.cs | 5 +++++ 1 file changed, 5 insertions(+) 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; } } } }