diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-09-17 17:49:14 -0700 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-09-17 17:49:14 -0700 |
commit | ea7cae52f40770d1023362dadd234b8038d9e68b (patch) | |
tree | 2bf9a9bfa01de5887be1336f4a9ece33cbf171e3 /src/DotNetOAuth/DotNetOAuth.csproj | |
parent | 2dcfb4843722237aa214294b59ed9be782ea0cec (diff) | |
download | DotNetOpenAuth-ea7cae52f40770d1023362dadd234b8038d9e68b.zip DotNetOpenAuth-ea7cae52f40770d1023362dadd234b8038d9e68b.tar.gz DotNetOpenAuth-ea7cae52f40770d1023362dadd234b8038d9e68b.tar.bz2 |
Added MessageDictionary and supporting classes and tests.
Very little documentation is there until I can prove the idea works to solve our signing design problem.
Diffstat (limited to 'src/DotNetOAuth/DotNetOAuth.csproj')
-rw-r--r-- | src/DotNetOAuth/DotNetOAuth.csproj | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/DotNetOAuth/DotNetOAuth.csproj b/src/DotNetOAuth/DotNetOAuth.csproj index 16f0dac..c53f1e0 100644 --- a/src/DotNetOAuth/DotNetOAuth.csproj +++ b/src/DotNetOAuth/DotNetOAuth.csproj @@ -68,6 +68,7 @@ <ItemGroup>
<Compile Include="Consumer.cs" />
<Compile Include="IWebRequestHandler.cs" />
+ <Compile Include="Messaging\MessagePartAttribute.cs" />
<Compile Include="Messaging\MessageProtection.cs" />
<Compile Include="Messaging\IChannelBindingElement.cs" />
<Compile Include="Messaging\Bindings\ReplayedMessageException.cs" />
@@ -90,6 +91,10 @@ </Compile>
<Compile Include="Messaging\MessagingUtilities.cs" />
<Compile Include="Messaging\Bindings\StandardExpirationBindingElement.cs" />
+ <Compile Include="Messaging\Reflection\ValueMapping.cs" />
+ <Compile Include="Messaging\Reflection\MessageDescription.cs" />
+ <Compile Include="Messaging\Reflection\MessageDictionary.cs" />
+ <Compile Include="Messaging\Reflection\MessagePart.cs" />
<Compile Include="Messaging\UnprotectedMessageException.cs" />
<Compile Include="OAuthChannel.cs" />
<Compile Include="Messaging\Response.cs" />
|