Skip to content

Commit

Permalink
Change target to 3.5 for Mono support
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Murphy committed Dec 22, 2011
1 parent 4b8e325 commit bc29338
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion LoveSeat.Repository/LoveSeat.Repositories.csproj
Expand Up @@ -10,8 +10,9 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>LoveSeat.Repositories</RootNamespace>
<AssemblyName>LoveSeat.Repositories</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down
2 changes: 1 addition & 1 deletion LoveSeat/CouchDatabase.cs
Expand Up @@ -129,7 +129,7 @@ public ViewResult GetDocuments(Keys keyLst)
/// <remarks>Here we assume you have either added the correct rev, id, or _deleted attribute to each document. The response will indicate if there were any errors.
/// Please note that the max_document_size configuration variable in CouchDB limits the maximum request size to CouchDB.</remarks>
/// <returns>JSON of updated documents in the BulkDocumentResponse class. </returns>
public BulkDocumentResponses SaveDocuments(Documents docs, bool all_or_nothing = false)
public BulkDocumentResponses SaveDocuments(Documents docs, bool all_or_nothing)
{
string uri = databaseBaseUri + "/_bulk_docs";

Expand Down

0 comments on commit bc29338

Please sign in to comment.