diff options
Diffstat (limited to 'src/OpenID/OpenIdOfflineProvider/App.xaml.cs')
-rw-r--r-- | src/OpenID/OpenIdOfflineProvider/App.xaml.cs | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/OpenID/OpenIdOfflineProvider/App.xaml.cs b/src/OpenID/OpenIdOfflineProvider/App.xaml.cs new file mode 100644 index 0000000..8fb29e8 --- /dev/null +++ b/src/OpenID/OpenIdOfflineProvider/App.xaml.cs @@ -0,0 +1,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(); + } + } +} |