Browse Source

1.5 release changes

pull/123/head
sridharn 13 years ago
parent
commit
3100b9380e
  1. 2
      CSharpDriverDocs.shfbproj
  2. 2
      GlobalAssemblyInfo.cs
  3. 2
      Installer/CSharpDriverInstaller.wixproj
  4. 12
      Installer/Product.wxs
  5. 3
      Installer/makeinstaller.bat
  6. 4
      mongocsharpdriver.nuspec
  7. 12
      packages/makepackages.bat

2
CSharpDriverDocs.shfbproj

@ -45,7 +45,7 @@
<FeedbackEMailAddress>craig.wilson%4010gen.com, robert%4010gen.com sridhar%4010gen.com</FeedbackEMailAddress>
<FeedbackEMailLinkText>CSharp driver API doc</FeedbackEMailLinkText>
<FrameworkVersion>.NET 3.5</FrameworkVersion>
<HelpFileVersion>1.4.2.4500</HelpFileVersion>
<HelpFileVersion>1.5.0.4566</HelpFileVersion>
</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

2
GlobalAssemblyInfo.cs

@ -39,4 +39,4 @@ using System.Security;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.5.0.*")]
[assembly: AssemblyVersion("1.5.0.4566")]

2
Installer/CSharpDriverInstaller.wixproj

@ -8,7 +8,7 @@
<ProductVersion>3.5</ProductVersion>
<ProjectGuid>{0f21668d-b8ad-4b32-9392-a7beadf54efd}</ProjectGuid>
<SchemaVersion>2.0</SchemaVersion>
<OutputName>CSharpDriverInstaller</OutputName>
<OutputName>CSharpDriver-$(FullVersion)</OutputName>
<OutputType>Package</OutputType>
<WixTargetsPath Condition=" '$(WixTargetsPath)' == '' AND '$(MSBuildExtensionsPath32)' != '' ">$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath>
<WixTargetsPath Condition=" '$(WixTargetsPath)' == '' ">$(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath>

12
Installer/Product.wxs

@ -71,27 +71,27 @@
DiskId ="1" KeyPath="yes" />
</Component>
<Component Id="c_BsonDll" Guid="13DA8DD9-1AD1-46BF-971A-78FA499F281D">
<File Id="f_BsonDll" Name="MongoDB.Bson.dll" Source="$(var.SourceBase)\Bson\bin\Debug\MongoDB.Bson.dll"
<File Id="f_BsonDll" Name="MongoDB.Bson.dll" Source="$(var.SourceBase)\Bson\bin\$(var.Configuration)\MongoDB.Bson.dll"
DiskId ="1" KeyPath="yes" />
</Component>
<Component Id="c_BsonPdb" Guid="AC6CE1A0-1584-42E6-B9FB-765F34A44745">
<File Id="f_BsonPdb" Name="MongoDB.Bson.pdb" Source="$(var.SourceBase)\Bson\bin\Debug\MongoDB.Bson.pdb"
<File Id="f_BsonPdb" Name="MongoDB.Bson.pdb" Source="$(var.SourceBase)\Bson\bin\$(var.Configuration)\MongoDB.Bson.pdb"
DiskId ="1" KeyPath="yes" />
</Component>
<Component Id="c_BsonXml" Guid="ED71DBCD-5A02-4AC0-88E4-C793F5FBEDA8">
<File Id="f_BsonXml" Name="MongoDB.Bson.xml" Source="$(var.SourceBase)\Bson\bin\Debug\MongoDB.Bson.XML"
<File Id="f_BsonXml" Name="MongoDB.Bson.xml" Source="$(var.SourceBase)\Bson\bin\$(var.Configuration)\MongoDB.Bson.XML"
DiskId ="1" KeyPath="yes" />
</Component>
<Component Id="c_DriverDll" Guid="0A94BBE0-6281-422D-BEE2-5831B06F2D55">
<File Id="f_DriverDll" Name="MongoDB.Driver.dll" Source="$(var.SourceBase)\Driver\bin\Debug\MongoDB.Driver.dll"
<File Id="f_DriverDll" Name="MongoDB.Driver.dll" Source="$(var.SourceBase)\Driver\bin\$(var.Configuration)\MongoDB.Driver.dll"
DiskId ="1" KeyPath="yes" />
</Component>
<Component Id="c_DriverPdb" Guid="C580837A-9EE9-4C86-97EE-0A8DCBB4794E">
<File Id="f_DriverPdb" Name="MongoDB.Driver.pdb" Source="$(var.SourceBase)\Driver\bin\Debug\MongoDB.Driver.pdb"
<File Id="f_DriverPdb" Name="MongoDB.Driver.pdb" Source="$(var.SourceBase)\Driver\bin\$(var.Configuration)\MongoDB.Driver.pdb"
DiskId ="1" KeyPath="yes" />
</Component>
<Component Id="c_DriverXml" Guid="9EBD61C3-5365-416F-B345-517B053D9784">
<File Id="f_DriverXml" Name="MongoDB.Driver.XML" Source="$(var.SourceBase)\Driver\bin\Debug\MongoDB.Driver.XML"
<File Id="f_DriverXml" Name="MongoDB.Driver.XML" Source="$(var.SourceBase)\Driver\bin\$(var.Configuration)\MongoDB.Driver.XML"
DiskId ="1" KeyPath="yes" />
</Component>
</DirectoryRef>

3
Installer/makeinstaller.bat

@ -1,5 +1,6 @@
@ECHO OFF
SET Version=1.4.2
SET FullVersion=1.5.0.4566
SET Version=1.5
SET Configuration=Release
SET SourceBase=..

4
mongocsharpdriver.nuspec

@ -2,7 +2,7 @@
<package>
<metadata>
<id>mongocsharpdriver</id>
<version>1.4.2</version>
<version>1.5</version>
<title>Official MongoDB C# driver</title>
<authors>10gen, Inc.</authors>
<owners>Sridhar Nanjundeswaran</owners>
@ -21,7 +21,7 @@
<file src="Driver\bin\Release\MongoDB.Driver.dll" target="lib\net35" />
<file src="Driver\bin\Release\MongoDB.Driver.pdb" target="lib\net35" />
<file src="Driver\bin\Release\MongoDB.Driver.XML" target="lib\net35" />
<file src="Release Notes\Release Notes v1.4.2.txt" target="" />
<file src="Release Notes\Release Notes v1.5.txt" target="" />
<file src="License.rtf" target ="" />
</files>
</package>

12
packages/makepackages.bat

@ -1,4 +1,4 @@
set VER=1.4.2.4500
set VER=1.5.0.4566
set PACKAGES=packages-%VER%
echo Creating %PACKAGES%
@ -9,14 +9,14 @@ mkdir %PACKAGES%
xcopy /f /d /y ..\DriverSetup\Release\CSharpDriver.msi %PACKAGES%\
ren %PACKAGES%\CSharpDriver.msi CSharpDriver-%VER%.msi
del "Release Notes v.1.4.2.txt"
xcopy /f /y "..\Release Notes\Release Notes v1.4.2.md"
ren "Release Notes v1.4.2.md" "Release Notes v1.4.2.txt"
del "Release Notes v.1.5.txt"
xcopy /f /y "..\Release Notes\Release Notes v1.5.md"
ren "Release Notes v1.5.md" "Release Notes v1.5.txt"
set ZIPEXE="C:\Program Files\7-Zip\7z.exe"
set ZIPFILE=%PACKAGES%\CSharpDriver-%VER%.zip
%ZIPEXE% a %ZIPFILE% ..\License.txt
%ZIPEXE% a %ZIPFILE% "Release Notes v1.4.2.txt"
%ZIPEXE% a %ZIPFILE% "Release Notes v1.5.txt"
%ZIPEXE% a %ZIPFILE% ..\Driver\bin\Release\MongoDB.Bson.dll
%ZIPEXE% a %ZIPFILE% ..\Driver\bin\Release\MongoDB.Bson.pdb
%ZIPEXE% a %ZIPFILE% ..\Driver\bin\Release\MongoDB.Bson.xml
@ -25,7 +25,7 @@ set ZIPFILE=%PACKAGES%\CSharpDriver-%VER%.zip
%ZIPEXE% a %ZIPFILE% ..\Driver\bin\Release\MongoDB.Driver.xml
%ZIPEXE% a %ZIPFILE% ..\Help\CSharpDriverDocs.chm
del "Release Notes v1.4.2.txt"
del "Release Notes v1.5.txt"
echo Created %PACKAGES%
pause
Loading…
Cancel
Save