summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Core
diff options
context:
space:
mode:
Diffstat (limited to 'src/DotNetOpenAuth.Core')
-rw-r--r--src/DotNetOpenAuth.Core/DotNetOpenAuth.Core.csproj4
-rw-r--r--src/DotNetOpenAuth.Core/Logger.cs4
2 files changed, 5 insertions, 3 deletions
diff --git a/src/DotNetOpenAuth.Core/DotNetOpenAuth.Core.csproj b/src/DotNetOpenAuth.Core/DotNetOpenAuth.Core.csproj
index 77d767b..0acc7b6 100644
--- a/src/DotNetOpenAuth.Core/DotNetOpenAuth.Core.csproj
+++ b/src/DotNetOpenAuth.Core/DotNetOpenAuth.Core.csproj
@@ -19,7 +19,9 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
</PropertyGroup>
<ItemGroup>
- <Compile Include="App_Packages\LibLog.2.0\LibLog.cs" />
+ <Compile Include="App_Packages\LibLog.2.0\LibLog.cs">
+ <ExcludeFromStyleCop>True</ExcludeFromStyleCop>
+ </Compile>
<Compile Include="Assumes.cs" />
<Compile Include="IHostFactories.cs" />
<Compile Include="IRequireHostFactories.cs" />
diff --git a/src/DotNetOpenAuth.Core/Logger.cs b/src/DotNetOpenAuth.Core/Logger.cs
index f82b2e6..c770e64 100644
--- a/src/DotNetOpenAuth.Core/Logger.cs
+++ b/src/DotNetOpenAuth.Core/Logger.cs
@@ -12,7 +12,7 @@ namespace DotNetOpenAuth {
using DotNetOpenAuth.Messaging;
using Validation;
- /// <summary>
+ /// <summary>
/// A general logger for the entire DotNetOpenAuth library.
/// </summary>
/// <remarks>
@@ -167,7 +167,7 @@ namespace DotNetOpenAuth {
/// <param name="name">The name of the log to initialize.</param>
/// <returns>The <see cref="ILog"/> instance of the logger to use.</returns>
private static ILog InitializeFacade(string name) {
- return LogProvider.GetLogger(name);
+ return LogProvider.GetLogger(name);
}
}
}