Skip to content

Commit

Permalink
* Bumped version to 1.6.8
Browse files Browse the repository at this point in the history
* Updated to MongoCSharpDriver 1.10.0.62
  • Loading branch information
RobThree committed Feb 3, 2015
1 parent 7a45da2 commit 17e95f6
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 17 deletions.
6 changes: 5 additions & 1 deletion MongoRepository/dev/Help/MongoRepository.shfbproj
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<SccProvider>SAK</SccProvider>
<SccAuxPath>SAK</SccAuxPath>
<SccLocalPath>SAK</SccLocalPath>
<HelpFileVersion>1.6.7.0</HelpFileVersion>
<HelpFileVersion>1.6.8.0</HelpFileVersion>
<BuildAssemblerVerbosity>OnlyWarningsAndErrors</BuildAssemblerVerbosity>
<HelpFileFormat>HtmlHelp1, Website</HelpFileFormat>
<IndentHtml>False</IndentHtml>
Expand All @@ -55,6 +55,10 @@
<Preliminary>False</Preliminary>
<NamingMethod>Guid</NamingMethod>
<ContentPlacement>AboveNamespaces</ContentPlacement>
<PlugInNamespaces>ms.vsipcc+, ms.vsexpresscc+</PlugInNamespaces>
<CollectionTocStyle>Hierarchical</CollectionTocStyle>
<MSHelp2SdkLinkType>Msdn</MSHelp2SdkLinkType>
<IncludeStopWordList>True</IncludeStopWordList>
</PropertyGroup>
<!-- There are no properties for these groups. AnyCPU needs to appear in
order for Visual Studio to perform the build. The others are optional
Expand Down
6 changes: 3 additions & 3 deletions MongoRepository/dev/MongoRepository.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>MongoRepository</id>
<title>MongoRepository</title>
<version>1.6.7</version>
<version>1.6.8</version>
<authors>tgeek, RobIII</authors>
<owners>tgeek</owners>
<licenseUrl>http://mongorepository.codeplex.com/license</licenseUrl>
Expand All @@ -13,14 +13,14 @@
<tags>mongo mongodb repository</tags>
<iconUrl>http://download-codeplex.sec.s-msft.com/Download?ProjectName=mongorepository&amp;DownloadId=334950&amp;Build=19692</iconUrl>
<releaseNotes>
* Fix inherited classes go to same collection as baseclass (https://mongorepository.codeplex.com/discussions/572382)
Updated to MongoCSharp driver 1.10
</releaseNotes>
<summary>
Provides a repository pattern on top of 10gen's MongoDB C# driver.
</summary>
<language>en-US</language>
<dependencies>
<dependency id="mongocsharpdriver" version="[1.9.2]" />
<dependency id="mongocsharpdriver" version="[1.10]" />
</dependencies>
</metadata>
<files>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@
<DocumentationFile>bin\Release\MongoRepository.Net35.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="MongoDB.Bson, Version=1.9.2.235, Culture=neutral, PublicKeyToken=f686731cfb9cc103, processorArchitecture=MSIL">
<Reference Include="MongoDB.Bson, Version=1.10.0.62, Culture=neutral, PublicKeyToken=f686731cfb9cc103, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\mongocsharpdriver.1.9.2\lib\net35\MongoDB.Bson.dll</HintPath>
<HintPath>..\packages\mongocsharpdriver.1.10.0\lib\net35\MongoDB.Bson.dll</HintPath>
</Reference>
<Reference Include="MongoDB.Driver, Version=1.9.2.235, Culture=neutral, PublicKeyToken=f686731cfb9cc103, processorArchitecture=MSIL">
<Reference Include="MongoDB.Driver, Version=1.10.0.62, Culture=neutral, PublicKeyToken=f686731cfb9cc103, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\mongocsharpdriver.1.9.2\lib\net35\MongoDB.Driver.dll</HintPath>
<HintPath>..\packages\mongocsharpdriver.1.10.0\lib\net35\MongoDB.Driver.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Configuration" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("MongoRepository")]
[assembly: AssemblyCopyright("Copyright © 2011 - 2014")]
[assembly: AssemblyCopyright("Copyright © 2011 - 2015")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -22,5 +22,5 @@
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("7e3d1784-b1f3-4b33-a303-7facc780917e")]

[assembly: AssemblyVersion("1.6.7.0")]
[assembly: AssemblyFileVersion("1.6.7.0")]
[assembly: AssemblyVersion("1.6.8.0")]
[assembly: AssemblyFileVersion("1.6.8.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
{
using MongoDB.Driver;
using MongoDB.Driver.Builders;
using System;
using System.Collections.Generic;
using System.Linq;

Expand Down Expand Up @@ -231,6 +232,7 @@ public virtual void ReIndex()
/// Gets the total size for the repository (data + indexes).
/// </summary>
/// <returns>Returns total size for the repository (data + indexes).</returns>
[Obsolete("This method will be removed in the next version of the driver")]
public virtual long GetTotalDataSize()
{
return this.collection.GetTotalDataSize();
Expand All @@ -240,6 +242,7 @@ public virtual long GetTotalDataSize()
/// Gets the total storage size for the repository (data + indexes).
/// </summary>
/// <returns>Returns total storage size for the repository (data + indexes).</returns>
[Obsolete("This method will be removed in the next version of the driver")]
public virtual long GetTotalStorageSize()
{
return this.collection.GetTotalStorageSize();
Expand Down
2 changes: 1 addition & 1 deletion MongoRepository/dev/MongoRepository/packages.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="mongocsharpdriver" version="1.9.2" targetFramework="net35" />
<package id="mongocsharpdriver" version="1.10.0" targetFramework="net35" />
</packages>
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@
<ItemGroup>
<Reference Include="Microsoft.CSharp" />
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
<Reference Include="MongoDB.Bson, Version=1.9.2.235, Culture=neutral, PublicKeyToken=f686731cfb9cc103, processorArchitecture=MSIL">
<Reference Include="MongoDB.Bson, Version=1.10.0.62, Culture=neutral, PublicKeyToken=f686731cfb9cc103, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\mongocsharpdriver.1.9.2\lib\net35\MongoDB.Bson.dll</HintPath>
<HintPath>..\packages\mongocsharpdriver.1.10.0\lib\net35\MongoDB.Bson.dll</HintPath>
</Reference>
<Reference Include="MongoDB.Driver, Version=1.9.2.235, Culture=neutral, PublicKeyToken=f686731cfb9cc103, processorArchitecture=MSIL">
<Reference Include="MongoDB.Driver, Version=1.10.0.62, Culture=neutral, PublicKeyToken=f686731cfb9cc103, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\mongocsharpdriver.1.9.2\lib\net35\MongoDB.Driver.dll</HintPath>
<HintPath>..\packages\mongocsharpdriver.1.10.0\lib\net35\MongoDB.Driver.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Configuration" />
Expand Down
2 changes: 1 addition & 1 deletion MongoRepository/dev/MongoRepositoryTests/packages.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="mongocsharpdriver" version="1.9.2" targetFramework="net40" />
<package id="mongocsharpdriver" version="1.10.0" targetFramework="net40" />
</packages>

0 comments on commit 17e95f6

Please sign in to comment.