Skip to content

Commit 268a3ff

Browse files
author
darioquintana
committed
- moving the version to 2.0.2.GA
- updating connection string to sql server 2008 - creating nuget package git-svn-id: https://nhcontrib.svn.sourceforge.net/svnroot/nhcontrib/trunk/src/NHibernate.Search@1681 d7b3437e-3345-0410-94a8-cbd290e69f67
1 parent 7a7890d commit 268a3ff

File tree

5 files changed

+36
-6
lines changed

5 files changed

+36
-6
lines changed

NHibernate.Search.nuspec

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?xml version="1.0"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata>
4+
<id>NHibernate.Search</id>
5+
<title>NHibernate Search</title>
6+
<version>2.0.2.4000</version>
7+
<authors>NHibernate Community</authors>
8+
<owners>Dario Quintana</owners>
9+
<licenseUrl>http://www.gnu.org/licenses/lgpl.html</licenseUrl>
10+
<projectUrl>http://nhforge.org</projectUrl>
11+
<iconUrl>http://darioquintana.com.ar/files/nhsearch-logo.png</iconUrl>
12+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
13+
<summary>
14+
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.
15+
</summary>
16+
<description>
17+
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.
18+
</description>
19+
<tags>NHibernate Search Lucene FullText Text</tags>
20+
<dependencies>
21+
<dependency id="NHibernate" version="3.1.0.4000" />
22+
</dependencies>
23+
</metadata>
24+
<files>
25+
<file src="Build\NHibernate.Search.dll" target="lib\Net35" />
26+
</files>
27+
</package>

build.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
nant -t:net-3.5 test
2+
pause

nugetdeploy.bat

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
nuget pack NHibernate.Search.nuspec
2+
nuget push -source http://packages.nuget.org/v1/ NHibernate.Search.2.0.2.4000.nupkg %1

src/NHibernate.Search.Tests/App.config

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,8 @@
2424
<property name="connection.isolation">ReadCommitted</property>
2525

2626
<!-- This is the System.Data.dll provider for MSSQL Server -->
27-
<property name="connection.driver_class">NHibernate.Driver.SqlClientDriver</property>
28-
<property name="dialect">NHibernate.Dialect.MsSql2000Dialect</property>
29-
<property name="connection.connection_string">Server=(local);initial catalog=nhsearch;Integrated Security=SSPI</property>
27+
<property name="dialect">NHibernate.Dialect.MsSql2008Dialect</property>
28+
<property name="connection.connection_string">Server=.\sqlexpress;initial catalog=nhsearch;Integrated Security=SSPI</property>
3029
<property name="query.substitutions">true 1, false 0, yes 'Y', no 'N'</property>
3130
<property name="adonet.batch_size">10</property>
3231
<property name="prepare_sql">false</property>

src/NHibernate.Search/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
[assembly : AssemblyCompanyAttribute("NHibernate.org")]
1818
[assembly : AssemblyProductAttribute("NHibernate.Search")]
1919
[assembly : AssemblyCopyrightAttribute("Licensed under LGPL.")]
20-
[assembly : AssemblyVersionAttribute("2.0.0.1001")]
21-
[assembly : AssemblyInformationalVersionAttribute("2.0.1.4000")]
22-
[assembly: AssemblyFileVersionAttribute("2.0.1.4000")]
20+
[assembly : AssemblyVersionAttribute("2.0.2.4000")]
21+
[assembly : AssemblyInformationalVersionAttribute("2.0.2.4000")]
22+
[assembly: AssemblyFileVersionAttribute("2.0.2.4000")]
2323
//[assembly : AssemblyKeyFileAttribute("../../src/NHibernate.snk")]
2424
[assembly : AssemblyDelaySignAttribute(false)]

0 commit comments

Comments
 (0)