diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-10-02 09:52:17 -0700 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-10-02 09:52:17 -0700 |
commit | e414945b440325d6616c57e3baa5c818821f558a (patch) | |
tree | 28def1e31840bb66a9047daacb1bc51b0a8b6ef3 /samples/ConsumerWpf/App.xaml.cs | |
parent | df5629e0149a262dcda8dfdb7652b67df77d6845 (diff) | |
download | DotNetOpenAuth-e414945b440325d6616c57e3baa5c818821f558a.zip DotNetOpenAuth-e414945b440325d6616c57e3baa5c818821f558a.tar.gz DotNetOpenAuth-e414945b440325d6616c57e3baa5c818821f558a.tar.bz2 |
Added Consumer WPF and ASP.NET WebForms samples.
Diffstat (limited to 'samples/ConsumerWpf/App.xaml.cs')
-rw-r--r-- | samples/ConsumerWpf/App.xaml.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/samples/ConsumerWpf/App.xaml.cs b/samples/ConsumerWpf/App.xaml.cs new file mode 100644 index 0000000..075d6f6 --- /dev/null +++ b/samples/ConsumerWpf/App.xaml.cs @@ -0,0 +1,14 @@ +namespace ConsumerWpf {
+ using System;
+ using System.Collections.Generic;
+ using System.Configuration;
+ using System.Data;
+ using System.Linq;
+ using System.Windows;
+
+ /// <summary>
+ /// Interaction logic for App.xaml
+ /// </summary>
+ public partial class App : Application {
+ }
+}
|