diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-10-09 07:36:54 -0700 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-10-09 07:36:54 -0700 |
commit | f36530e4bdd9b534fba3785a98a406ac387fbfac (patch) | |
tree | cc6392f4cd31d8a0e58782fff91eb0ca17c09b25 /src/DotNetOAuth/DotNetOAuth.csproj | |
parent | 50e231ec535e08c2bd5552100a0b3b7feb613f22 (diff) | |
download | DotNetOpenAuth-f36530e4bdd9b534fba3785a98a406ac387fbfac.zip DotNetOpenAuth-f36530e4bdd9b534fba3785a98a406ac387fbfac.tar.gz DotNetOpenAuth-f36530e4bdd9b534fba3785a98a406ac387fbfac.tar.bz2 |
Split Consumer class into two subclasses for desktop and web clients.
Diffstat (limited to 'src/DotNetOAuth/DotNetOAuth.csproj')
-rw-r--r-- | src/DotNetOAuth/DotNetOAuth.csproj | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/DotNetOAuth/DotNetOAuth.csproj b/src/DotNetOAuth/DotNetOAuth.csproj index 43e0849..4238e0c 100644 --- a/src/DotNetOAuth/DotNetOAuth.csproj +++ b/src/DotNetOAuth/DotNetOAuth.csproj @@ -69,13 +69,15 @@ <Compile Include="ChannelElements\SigningBindingElementChain.cs" />
<Compile Include="ChannelElements\StandardTokenGenerator.cs" />
<Compile Include="ChannelElements\TokenType.cs" />
+ <Compile Include="ConsumerBase.cs" />
+ <Compile Include="DesktopConsumer.cs" />
<Compile Include="Messaging\ITamperProtectionChannelBindingElement.cs" />
<Compile Include="ServiceProviderDescription.cs" />
<Compile Include="Messages\ITokenContainingMessage.cs" />
<Compile Include="Messages\SignedMessageBase.cs" />
<Compile Include="Messaging\Bindings\NonceMemoryStore.cs" />
<Compile Include="ChannelElements\SigningBindingElementBase.cs" />
- <Compile Include="Consumer.cs" />
+ <Compile Include="WebConsumer.cs" />
<Compile Include="ChannelElements\IWebRequestHandler.cs" />
<Compile Include="ChannelElements\ITamperResistantOAuthMessage.cs" />
<Compile Include="Messages\MessageBase.cs" />
|