Added container accessor to Castle.Core
[castle.git] / Tools / VSNetWizards / CastleTemplates / VS8 / CSharp / ARProjectTest / App.config
blobf217f3869bfb35159d5d8bef90fa8a105f04d318
1 <?xml version="1.0" encoding="utf-8" ?>
3 <configuration>
5 <configSections>
6 <section name="activerecord"
7 type="Castle.ActiveRecord.Framework.Config.ActiveRecordSectionHandler, Castle.ActiveRecord" />
8 </configSections>
10 <!-- For the configuration reference, check -->
11 <!-- http://www.castleproject.org/index.php/ActiveRecord:Configuration_Reference -->
12 <activerecord>
13 <!-- The configuration below is good enough for MS SQL Server only -->
14 <!-- Remember that you should use a test database, never use development or production -->
15 <config>
16 <add key="hibernate.connection.driver_class" value="NHibernate.Driver.SqlClientDriver" />
17 <add key="hibernate.dialect" value="NHibernate.Dialect.MsSql2000Dialect" />
18 <add key="hibernate.connection.provider" value="NHibernate.Connection.DriverConnectionProvider" />
19 <add key="hibernate.connection.connection_string" value="Data Source=.;Initial Catalog=mytestdatabase;Integrated Security=SSPI" />
20 </config>
22 </activerecord>
24 </configuration>