Skip to content

Commit

Permalink
Fixing the build
Browse files Browse the repository at this point in the history
  • Loading branch information
ayende committed Jul 29, 2012
1 parent 70fb801 commit c006c54
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Raven.Abstractions/Extensions/MetadataExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public static RavenJObject FilterHeaders(this RavenJObject self)
public static RavenJObject FilterHeadersAttachment(this IDictionary<string, IList<string>> self)
{
var filterHeaders = self.FilterHeaders();
if (self.ContainsKey("Content-Type") != null)
if (self.ContainsKey("Content-Type"))
filterHeaders["Content-Type"] = self["Content-Type"].FirstOrDefault();
return filterHeaders;
}
Expand Down
4 changes: 3 additions & 1 deletion Raven.Tests.Silverlight/Raven.Tests.Silverlight.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,9 @@
<SpecificVersion>False</SpecificVersion>
<HintPath>..\SharedLibs\Silverlight\Toolkit v5.0\Testing\Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll</HintPath>
</Reference>
<Reference Include="Raven.Tests.Silverlight.UnitTestProvider, Version=1.2.0.0, Culture=neutral, PublicKeyToken=321535b674325ef3, processorArchitecture=MSIL" />
<Reference Include="Raven.Tests.Silverlight.UnitTestProvider">
<HintPath>..\Utilities\Binaries\Raven.Tests.Silverlight.UnitTestProvider.dll</HintPath>
</Reference>
<Reference Include="System.ComponentModel.Composition, Version=5.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\Program Files (x86)\Microsoft SDKs\Silverlight\v5.0\Libraries\Client\System.ComponentModel.Composition.dll</HintPath>
Expand Down

0 comments on commit c006c54

Please sign in to comment.