blob: 8fb29e8e87846461537bcf31b8ec55cf38d78e5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
//-----------------------------------------------------------------------
// <copyright file="App.xaml.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.OpenIdOfflineProvider {
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Windows;
using log4net;
using log4net.Core;
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application {
/// <summary>
/// Message logger.
/// </summary>
internal static ILog Logger = log4net.LogManager.GetLogger(typeof(App));
/// <summary>
/// Initializes a new instance of the <see cref="App"/> class.
/// </summary>
public App() {
log4net.Config.XmlConfigurator.Configure();
}
}
}
|