Skip to content
This repository was archived by the owner on Feb 22, 2020. It is now read-only.

Commit 17e95f6

Browse files
committed
* Bumped version to 1.6.8
* Updated to MongoCSharpDriver 1.10.0.62
1 parent 7a45da2 commit 17e95f6

File tree

8 files changed

+24
-17
lines changed

8 files changed

+24
-17
lines changed

MongoRepository/dev/Help/MongoRepository.shfbproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<SccProvider>SAK</SccProvider>
3838
<SccAuxPath>SAK</SccAuxPath>
3939
<SccLocalPath>SAK</SccLocalPath>
40-
<HelpFileVersion>1.6.7.0</HelpFileVersion>
40+
<HelpFileVersion>1.6.8.0</HelpFileVersion>
4141
<BuildAssemblerVerbosity>OnlyWarningsAndErrors</BuildAssemblerVerbosity>
4242
<HelpFileFormat>HtmlHelp1, Website</HelpFileFormat>
4343
<IndentHtml>False</IndentHtml>
@@ -55,6 +55,10 @@
5555
<Preliminary>False</Preliminary>
5656
<NamingMethod>Guid</NamingMethod>
5757
<ContentPlacement>AboveNamespaces</ContentPlacement>
58+
<PlugInNamespaces>ms.vsipcc+, ms.vsexpresscc+</PlugInNamespaces>
59+
<CollectionTocStyle>Hierarchical</CollectionTocStyle>
60+
<MSHelp2SdkLinkType>Msdn</MSHelp2SdkLinkType>
61+
<IncludeStopWordList>True</IncludeStopWordList>
5862
</PropertyGroup>
5963
<!-- There are no properties for these groups. AnyCPU needs to appear in
6064
order for Visual Studio to perform the build. The others are optional

MongoRepository/dev/MongoRepository.nuspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
44
<id>MongoRepository</id>
55
<title>MongoRepository</title>
6-
<version>1.6.7</version>
6+
<version>1.6.8</version>
77
<authors>tgeek, RobIII</authors>
88
<owners>tgeek</owners>
99
<licenseUrl>http://mongorepository.codeplex.com/license</licenseUrl>
@@ -13,14 +13,14 @@
1313
<tags>mongo mongodb repository</tags>
1414
<iconUrl>http://download-codeplex.sec.s-msft.com/Download?ProjectName=mongorepository&amp;DownloadId=334950&amp;Build=19692</iconUrl>
1515
<releaseNotes>
16-
* Fix inherited classes go to same collection as baseclass (https://mongorepository.codeplex.com/discussions/572382)
16+
Updated to MongoCSharp driver 1.10
1717
</releaseNotes>
1818
<summary>
1919
Provides a repository pattern on top of 10gen's MongoDB C# driver.
2020
</summary>
2121
<language>en-US</language>
2222
<dependencies>
23-
<dependency id="mongocsharpdriver" version="[1.9.2]" />
23+
<dependency id="mongocsharpdriver" version="[1.10]" />
2424
</dependencies>
2525
</metadata>
2626
<files>

MongoRepository/dev/MongoRepository/MongoRepository.Net35.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@
4040
<DocumentationFile>bin\Release\MongoRepository.Net35.xml</DocumentationFile>
4141
</PropertyGroup>
4242
<ItemGroup>
43-
<Reference Include="MongoDB.Bson, Version=1.9.2.235, Culture=neutral, PublicKeyToken=f686731cfb9cc103, processorArchitecture=MSIL">
43+
<Reference Include="MongoDB.Bson, Version=1.10.0.62, Culture=neutral, PublicKeyToken=f686731cfb9cc103, processorArchitecture=MSIL">
4444
<SpecificVersion>False</SpecificVersion>
45-
<HintPath>..\packages\mongocsharpdriver.1.9.2\lib\net35\MongoDB.Bson.dll</HintPath>
45+
<HintPath>..\packages\mongocsharpdriver.1.10.0\lib\net35\MongoDB.Bson.dll</HintPath>
4646
</Reference>
47-
<Reference Include="MongoDB.Driver, Version=1.9.2.235, Culture=neutral, PublicKeyToken=f686731cfb9cc103, processorArchitecture=MSIL">
47+
<Reference Include="MongoDB.Driver, Version=1.10.0.62, Culture=neutral, PublicKeyToken=f686731cfb9cc103, processorArchitecture=MSIL">
4848
<SpecificVersion>False</SpecificVersion>
49-
<HintPath>..\packages\mongocsharpdriver.1.9.2\lib\net35\MongoDB.Driver.dll</HintPath>
49+
<HintPath>..\packages\mongocsharpdriver.1.10.0\lib\net35\MongoDB.Driver.dll</HintPath>
5050
</Reference>
5151
<Reference Include="System" />
5252
<Reference Include="System.Configuration" />

MongoRepository/dev/MongoRepository/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("")]
1212
[assembly: AssemblyProduct("MongoRepository")]
13-
[assembly: AssemblyCopyright("Copyright © 2011 - 2014")]
13+
[assembly: AssemblyCopyright("Copyright © 2011 - 2015")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

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

25-
[assembly: AssemblyVersion("1.6.7.0")]
26-
[assembly: AssemblyFileVersion("1.6.7.0")]
25+
[assembly: AssemblyVersion("1.6.8.0")]
26+
[assembly: AssemblyFileVersion("1.6.8.0")]

MongoRepository/dev/MongoRepository/RepositoryManager/MongoRepositoryManager.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
{
33
using MongoDB.Driver;
44
using MongoDB.Driver.Builders;
5+
using System;
56
using System.Collections.Generic;
67
using System.Linq;
78

@@ -231,6 +232,7 @@ public virtual void ReIndex()
231232
/// Gets the total size for the repository (data + indexes).
232233
/// </summary>
233234
/// <returns>Returns total size for the repository (data + indexes).</returns>
235+
[Obsolete("This method will be removed in the next version of the driver")]
234236
public virtual long GetTotalDataSize()
235237
{
236238
return this.collection.GetTotalDataSize();
@@ -240,6 +242,7 @@ public virtual long GetTotalDataSize()
240242
/// Gets the total storage size for the repository (data + indexes).
241243
/// </summary>
242244
/// <returns>Returns total storage size for the repository (data + indexes).</returns>
245+
[Obsolete("This method will be removed in the next version of the driver")]
243246
public virtual long GetTotalStorageSize()
244247
{
245248
return this.collection.GetTotalStorageSize();
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="mongocsharpdriver" version="1.9.2" targetFramework="net35" />
3+
<package id="mongocsharpdriver" version="1.10.0" targetFramework="net35" />
44
</packages>

MongoRepository/dev/MongoRepositoryTests/MongoRepositoryTests.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@
4141
<ItemGroup>
4242
<Reference Include="Microsoft.CSharp" />
4343
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
44-
<Reference Include="MongoDB.Bson, Version=1.9.2.235, Culture=neutral, PublicKeyToken=f686731cfb9cc103, processorArchitecture=MSIL">
44+
<Reference Include="MongoDB.Bson, Version=1.10.0.62, Culture=neutral, PublicKeyToken=f686731cfb9cc103, processorArchitecture=MSIL">
4545
<SpecificVersion>False</SpecificVersion>
46-
<HintPath>..\packages\mongocsharpdriver.1.9.2\lib\net35\MongoDB.Bson.dll</HintPath>
46+
<HintPath>..\packages\mongocsharpdriver.1.10.0\lib\net35\MongoDB.Bson.dll</HintPath>
4747
</Reference>
48-
<Reference Include="MongoDB.Driver, Version=1.9.2.235, Culture=neutral, PublicKeyToken=f686731cfb9cc103, processorArchitecture=MSIL">
48+
<Reference Include="MongoDB.Driver, Version=1.10.0.62, Culture=neutral, PublicKeyToken=f686731cfb9cc103, processorArchitecture=MSIL">
4949
<SpecificVersion>False</SpecificVersion>
50-
<HintPath>..\packages\mongocsharpdriver.1.9.2\lib\net35\MongoDB.Driver.dll</HintPath>
50+
<HintPath>..\packages\mongocsharpdriver.1.10.0\lib\net35\MongoDB.Driver.dll</HintPath>
5151
</Reference>
5252
<Reference Include="System" />
5353
<Reference Include="System.Configuration" />
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="mongocsharpdriver" version="1.9.2" targetFramework="net40" />
3+
<package id="mongocsharpdriver" version="1.10.0" targetFramework="net40" />
44
</packages>

0 commit comments

Comments
 (0)