blob: 481ddb7b95cb3a7595b75509129dacae4697e27a (
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
|
//-----------------------------------------------------------------------
// <copyright file="App.xaml.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.OpenIdOfflineProvider {
using System.Windows;
using DotNetOpenAuth.Logging;
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application {
/// <summary>
/// Initializes a new instance of the <see cref="App"/> class.
/// </summary>
public App() {
LogProvider.SetCurrentLogProvider(new TextWriterLogProvider());
}
}
}
|