Skip to content

Commit

Permalink
- moving the version to 2.0.2.GA
Browse files Browse the repository at this point in the history
- updating connection string to sql server 2008
- creating nuget package

git-svn-id: https://nhcontrib.svn.sourceforge.net/svnroot/nhcontrib/trunk@1681 d7b3437e-3345-0410-94a8-cbd290e69f67
  • Loading branch information
darioquintana committed Apr 19, 2011
1 parent 5487653 commit 9e6eefb
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 6 deletions.
27 changes: 27 additions & 0 deletions src/NHibernate.Search/NHibernate.Search.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>NHibernate.Search</id>
<title>NHibernate Search</title>
<version>2.0.2.4000</version>
<authors>NHibernate Community</authors>
<owners>Dario Quintana</owners>
<licenseUrl>http://www.gnu.org/licenses/lgpl.html</licenseUrl>
<projectUrl>http://nhforge.org</projectUrl>
<iconUrl>http://darioquintana.com.ar/files/nhsearch-logo.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<summary>
NHibernate Search brings the power of full text search engines to the persistence domain model by combining NHibernate with the capabilities of the Lucene.Net search engine.
</summary>
<description>
NHibernate Search brings the power of full text search engines to the persistence domain model by combining NHibernate with the capabilities of the Lucene.Net search engine.
</description>
<tags>NHibernate Search Lucene FullText Text</tags>
<dependencies>
<dependency id="NHibernate" version="3.1.0.4000" />
</dependencies>
</metadata>
<files>
<file src="Build\NHibernate.Search.dll" target="lib\Net35" />
</files>
</package>
2 changes: 2 additions & 0 deletions src/NHibernate.Search/build.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
nant -t:net-3.5 test
pause
2 changes: 2 additions & 0 deletions src/NHibernate.Search/nugetdeploy.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
nuget pack NHibernate.Search.nuspec
nuget push -source http://packages.nuget.org/v1/ NHibernate.Search.2.0.2.4000.nupkg %1
5 changes: 2 additions & 3 deletions src/NHibernate.Search/src/NHibernate.Search.Tests/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,8 @@
<property name="connection.isolation">ReadCommitted</property>

<!-- This is the System.Data.dll provider for MSSQL Server -->
<property name="connection.driver_class">NHibernate.Driver.SqlClientDriver</property>
<property name="dialect">NHibernate.Dialect.MsSql2000Dialect</property>
<property name="connection.connection_string">Server=(local);initial catalog=nhsearch;Integrated Security=SSPI</property>
<property name="dialect">NHibernate.Dialect.MsSql2008Dialect</property>
<property name="connection.connection_string">Server=.\sqlexpress;initial catalog=nhsearch;Integrated Security=SSPI</property>
<property name="query.substitutions">true 1, false 0, yes 'Y', no 'N'</property>
<property name="adonet.batch_size">10</property>
<property name="prepare_sql">false</property>
Expand Down
6 changes: 3 additions & 3 deletions src/NHibernate.Search/src/NHibernate.Search/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
[assembly : AssemblyCompanyAttribute("NHibernate.org")]
[assembly : AssemblyProductAttribute("NHibernate.Search")]
[assembly : AssemblyCopyrightAttribute("Licensed under LGPL.")]
[assembly : AssemblyVersionAttribute("2.0.0.1001")]
[assembly : AssemblyInformationalVersionAttribute("2.0.1.4000")]
[assembly: AssemblyFileVersionAttribute("2.0.1.4000")]
[assembly : AssemblyVersionAttribute("2.0.2.4000")]
[assembly : AssemblyInformationalVersionAttribute("2.0.2.4000")]
[assembly: AssemblyFileVersionAttribute("2.0.2.4000")]
//[assembly : AssemblyKeyFileAttribute("../../src/NHibernate.snk")]
[assembly : AssemblyDelaySignAttribute(false)]

0 comments on commit 9e6eefb

Please sign in to comment.