diff --git a/examples/Spring/Spring.Data.NHibernate.Northwind/Spring.Northwind.sln b/examples/Spring/Spring.Data.NHibernate.Northwind/Spring.Northwind.sln index 8ddd320b..1bc6642b 100644 --- a/examples/Spring/Spring.Data.NHibernate.Northwind/Spring.Northwind.sln +++ b/examples/Spring/Spring.Data.NHibernate.Northwind/Spring.Northwind.sln @@ -46,12 +46,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spring.Northwind.Integratio Release.AspNetCompiler.Debug = "False" EndProjectSection EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spring.Aspects", "src\Spring.Aspects\Spring.Aspects.csproj", "{53B04C54-63EA-45AA-BB83-8950AF3C5D68}" - ProjectSection(WebsiteProperties) = preProject - Debug.AspNetCompiler.Debug = "True" - Release.AspNetCompiler.Debug = "False" - EndProjectSection -EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spring.Northwind.Web.References", "src\Spring.Northwind.Web.References\Spring.Northwind.Web.References.csproj", "{FD89FEBE-4914-45F3-9123-B2CB954810DD}" ProjectSection(WebsiteProperties) = preProject Debug.AspNetCompiler.Debug = "True" @@ -118,16 +112,6 @@ Global {2D0C5DF7-3BDB-44FB-BC1B-58E60B170BAD}.Release|Any CPU.Build.0 = Release|Any CPU {2D0C5DF7-3BDB-44FB-BC1B-58E60B170BAD}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU {2D0C5DF7-3BDB-44FB-BC1B-58E60B170BAD}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {53B04C54-63EA-45AA-BB83-8950AF3C5D68}.Debug|.NET.ActiveCfg = Debug|Any CPU - {53B04C54-63EA-45AA-BB83-8950AF3C5D68}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {53B04C54-63EA-45AA-BB83-8950AF3C5D68}.Debug|Any CPU.Build.0 = Debug|Any CPU - {53B04C54-63EA-45AA-BB83-8950AF3C5D68}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {53B04C54-63EA-45AA-BB83-8950AF3C5D68}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {53B04C54-63EA-45AA-BB83-8950AF3C5D68}.Release|.NET.ActiveCfg = Release|Any CPU - {53B04C54-63EA-45AA-BB83-8950AF3C5D68}.Release|Any CPU.ActiveCfg = Release|Any CPU - {53B04C54-63EA-45AA-BB83-8950AF3C5D68}.Release|Any CPU.Build.0 = Release|Any CPU - {53B04C54-63EA-45AA-BB83-8950AF3C5D68}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {53B04C54-63EA-45AA-BB83-8950AF3C5D68}.Release|Mixed Platforms.Build.0 = Release|Any CPU {FD89FEBE-4914-45F3-9123-B2CB954810DD}.Debug|.NET.ActiveCfg = Debug|Any CPU {FD89FEBE-4914-45F3-9123-B2CB954810DD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {FD89FEBE-4914-45F3-9123-B2CB954810DD}.Debug|Any CPU.Build.0 = Debug|Any CPU diff --git a/examples/Spring/Spring.Data.NHibernate.Northwind/readme.txt b/examples/Spring/Spring.Data.NHibernate.Northwind/readme.txt index 4b5fb71c..4d3f0131 100644 --- a/examples/Spring/Spring.Data.NHibernate.Northwind/readme.txt +++ b/examples/Spring/Spring.Data.NHibernate.Northwind/readme.txt @@ -1,7 +1,16 @@ - Database configuration ====================== +Default: SQLite +--------------- + +The *default configuration* of the application uses a SQLite database therefore no extra setup is required to run the example. + + + +For SQLServer +------------- + A database file containing the Northwind database schema and data is located in the directory src\Spring.Northwind.Web\App_Data named NORTHWND.MDF. This file can me mounted explicitly using SQL Server 2005 or SQL Server Express. The web project's configuration is @@ -11,7 +20,7 @@ The integratation tests point to a copy of that database located in the directory \test\Spring.Northwind.IntegrationTests\bin\Debug. You will need to copy the .mdf file to the bin\Debug directory to run the integration test. -SQL Server Express or 2005 will need to running before the web application or integration test is launched. +SQL Server Express or SQL Server 2005/2008 will need to running before the web application or integration test is launched. -If you prefer to run against your own database, the schema is located in the test_northwind.sql and you will need to -modify your connection string accordingly. \ No newline at end of file +If you prefer to run against a different database, the schema is located in the test_northwind.sql and you will need to +modify accordingly. \ No newline at end of file