Skip to content

Commit

Permalink
Fixed xml documentation errors. Removed unused assemblie references.
Browse files Browse the repository at this point in the history
  • Loading branch information
Henrik Ohlsson committed Nov 22, 2012
1 parent a543d7a commit 5d942cc
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 55 deletions.
6 changes: 0 additions & 6 deletions Twitterizer.OAuth/Twitterizer.OAuth.csproj
Expand Up @@ -61,12 +61,6 @@
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Web" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\CommonAssemblyInfo.cs">
Expand Down
Expand Up @@ -56,17 +56,7 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="mscorlib" />
<Reference Include="Newtonsoft.Json, Version=4.0.5.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Newtonsoft.Json.4.0.5\lib\sl4\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System.ServiceModel" />
<Reference Include="System.Windows" />
<Reference Include="system" />
<Reference Include="System.Core" />
<Reference Include="System.Xml" />
<Reference Include="System.Net" />
<Reference Include="System.Windows.Browser" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\Twitterizer2.Async\AsyncUtility.cs">
Expand Down
5 changes: 0 additions & 5 deletions Twitterizer2.Async/Twitterizer2.Async.csproj
Expand Up @@ -66,11 +66,6 @@
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\CommonAssemblyInfo.cs">
Expand Down
3 changes: 0 additions & 3 deletions Twitterizer2.Silverlight/Twitterizer2.Silverlight.csproj
Expand Up @@ -63,14 +63,11 @@
<HintPath>..\packages\Newtonsoft.Json.4.0.5\lib\sl4\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.ServiceModel" />
<Reference Include="System.ServiceModel.Web" />
<Reference Include="System.Windows" />
<Reference Include="system" />
<Reference Include="System.Core" />
<Reference Include="System.Xml" />
<Reference Include="System.Net" />
<Reference Include="System.Windows.Browser" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\CommonAssemblyInfo.cs">
Expand Down
Expand Up @@ -58,9 +58,7 @@
<Reference Include="System.Windows" />
<Reference Include="system" />
<Reference Include="System.Core" />
<Reference Include="System.Xml" />
<Reference Include="System.Net" />
<Reference Include="System.Windows.Browser" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\Twitterizer2.Streaming\FilterStreamOptions.cs">
Expand Down
9 changes: 0 additions & 9 deletions Twitterizer2.Streaming/Twitterizer2.Streaming.csproj
Expand Up @@ -72,15 +72,6 @@
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Web" />
<Reference Include="System.Xml.Linq">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data.DataSetExtensions">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\CommonAssemblyInfo.cs">
Expand Down
8 changes: 0 additions & 8 deletions Twitterizer2.TestCases/Twitterizer2.TestCases.csproj
Expand Up @@ -77,14 +77,6 @@
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Xml.Linq">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data.DataSetExtensions">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\Twitterizer2\Core\SerializationHelper.cs">
Expand Down
10 changes: 5 additions & 5 deletions Twitterizer2/Methods/List/ListMembershipsCommand.cs
Expand Up @@ -52,13 +52,13 @@ internal sealed class ListMembershipsCommand : TwitterCommand<TwitterListCollect
/// Initializes a new instance of the <see cref="ListMembershipsCommand"/> class.
/// </summary>
/// <param name="requestTokens">The request tokens.</param>
/// <param name="username">The screenname.</param>
/// <param name="screenname">The screenname.</param>
/// <param name="options">The options.</param>
public ListMembershipsCommand(OAuthTokens requestTokens, string screenname, ListMembershipsOptions options)
: base(
HTTPVerb.GET,
"lists/memberships.json",
requestTokens,
HTTPVerb.GET,
"lists/memberships.json",
requestTokens,
options)
{
if (string.IsNullOrEmpty(screenname))
Expand All @@ -79,7 +79,7 @@ public ListMembershipsCommand(OAuthTokens requestTokens, string screenname, List
/// Initializes a new instance of the <see cref="ListMembershipsCommand"/> class.
/// </summary>
/// <param name="requestTokens">The request tokens.</param>
/// <param name="username">The screenname.</param>
/// <param name="userid">The screenname.</param>
/// <param name="options">The options.</param>
public ListMembershipsCommand(OAuthTokens requestTokens, decimal userid, ListMembershipsOptions options)
: base(
Expand Down
10 changes: 5 additions & 5 deletions Twitterizer2/Methods/List/TwitterList.cs
Expand Up @@ -199,7 +199,7 @@ public static TwitterResponse<TwitterList> New(OAuthTokens tokens, string userna
return New(tokens, name, isPublic, description, null);
}

/// <summary>
/// <summary>
/// Updates the specified list.
/// </summary>
/// <param name="tokens">The oauth tokens.</param>
Expand Down Expand Up @@ -329,7 +329,7 @@ public static TwitterResponse<TwitterStatusCollection> GetStatuses(OAuthTokens t
/// List the lists the specified user has been added to.
/// </summary>
/// <param name="tokens">The tokens.</param>
/// <param name="username">The screenname.</param>
/// <param name="screenname">The screenname.</param>
/// <param name="options">The options.</param>
/// <returns>
/// A <see cref="TwitterListCollection"/> instance.
Expand All @@ -344,7 +344,7 @@ public static TwitterResponse<TwitterListCollection> GetMemberships(OAuthTokens
/// List the lists the specified user has been added to.
/// </summary>
/// <param name="tokens">The tokens.</param>
/// <param name="username">The screenname.</param>
/// <param name="screenname">The screenname.</param>
/// <returns>
/// A <see cref="TwitterListCollection"/> instance.
/// </returns>
Expand All @@ -357,7 +357,7 @@ public static TwitterResponse<TwitterListCollection> GetMemberships(OAuthTokens
/// List the lists the specified user has been added to.
/// </summary>
/// <param name="tokens">The tokens.</param>
/// <param name="username">The userid.</param>
/// <param name="userid">The userid.</param>
/// <param name="options">The options.</param>
/// <returns>
/// A <see cref="TwitterListCollection"/> instance.
Expand All @@ -372,7 +372,7 @@ public static TwitterResponse<TwitterListCollection> GetMemberships(OAuthTokens
/// List the lists the specified user has been added to.
/// </summary>
/// <param name="tokens">The tokens.</param>
/// <param name="username">The userid.</param>
/// <param name="userid">The userid.</param>
/// <returns>
/// A <see cref="TwitterListCollection"/> instance.
/// </returns>
Expand Down
2 changes: 0 additions & 2 deletions Twitterizer2/Twitterizer2.csproj
Expand Up @@ -98,10 +98,8 @@
<HintPath>..\packages\Newtonsoft.Json.4.0.5\lib\net40\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.configuration" />
<Reference Include="System.Drawing" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Web" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
Expand Down

0 comments on commit 5d942cc

Please sign in to comment.