//----------------------------------------------------------------------- // // Copyright (c) Outercurve Foundation. All rights reserved. // //----------------------------------------------------------------------- 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; /// /// Interaction logic for App.xaml /// public partial class App : Application { /// /// Message logger. /// internal static ILog Logger = log4net.LogManager.GetLogger(typeof(App)); /// /// Initializes a new instance of the class. /// public App() { log4net.Config.XmlConfigurator.Configure(); } } }