diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-03-27 20:45:26 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-03-28 15:26:25 -0700 |
commit | a5844198d5744c4c9ec19e54089431c3fad84cce (patch) | |
tree | fb654b8a29ee518dc29d5ea29111fd0f1f291c84 /samples/OpenIdOfflineProvider/App.xaml.cs | |
parent | 3fd77825b44fdefc62b0f3be9f1b0308bcf73298 (diff) | |
download | DotNetOpenAuth-a5844198d5744c4c9ec19e54089431c3fad84cce.zip DotNetOpenAuth-a5844198d5744c4c9ec19e54089431c3fad84cce.tar.gz DotNetOpenAuth-a5844198d5744c4c9ec19e54089431c3fad84cce.tar.bz2 |
Added initial Offline Provider app.
Diffstat (limited to 'samples/OpenIdOfflineProvider/App.xaml.cs')
-rw-r--r-- | samples/OpenIdOfflineProvider/App.xaml.cs | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/samples/OpenIdOfflineProvider/App.xaml.cs b/samples/OpenIdOfflineProvider/App.xaml.cs new file mode 100644 index 0000000..1401d8c --- /dev/null +++ b/samples/OpenIdOfflineProvider/App.xaml.cs @@ -0,0 +1,30 @@ +//----------------------------------------------------------------------- +// <copyright file="App.xaml.cs" company="Andrew Arnott"> +// Copyright (c) Andrew Arnott. 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.Core; + using log4net; + + /// <summary> + /// Interaction logic for App.xaml + /// </summary> + public partial class App : Application { + 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(); + } + } +} |