Reacting to disposable logger provider

This commit is contained in:
Kiran Challa 2015-08-11 15:02:27 -07:00
parent a3f0ee3330
commit 289182b872
1 changed files with 5 additions and 0 deletions

View File

@ -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; } }
}
}