|
From: <fab...@us...> - 2010-08-02 12:00:30
|
Revision: 5093
http://nhibernate.svn.sourceforge.net/nhibernate/?rev=5093&view=rev
Author: fabiomaulo
Date: 2010-08-02 12:00:24 +0000 (Mon, 02 Aug 2010)
Log Message:
-----------
Preparing fix of NH-2226 (comment for XSD)
Modified Paths:
--------------
trunk/nhibernate/src/NHibernate/nhibernate-configuration.xsd
Modified: trunk/nhibernate/src/NHibernate/nhibernate-configuration.xsd
===================================================================
--- trunk/nhibernate/src/NHibernate/nhibernate-configuration.xsd 2010-08-02 11:44:24 UTC (rev 5092)
+++ trunk/nhibernate/src/NHibernate/nhibernate-configuration.xsd 2010-08-02 12:00:24 UTC (rev 5093)
@@ -10,7 +10,18 @@
<xs:element name="hibernate-configuration">
<xs:complexType>
<xs:sequence>
- <xs:element ref="bytecode-provider" minOccurs="0" maxOccurs="1" />
+ <xs:element ref="bytecode-provider" minOccurs="0" maxOccurs="1" >
+ <xs:annotation>
+ <xs:documentation>
+ There are 3 default short-cut values
+ - lcg : default for .NET2.0 and higher.
+ - codedom : CodeDOM-based bytecode provider (mostly for .NET1.1).
+ - null : Disable the reflection optimization completely.
+ In addition you can specify the AssemblyQualifiedName of your custom bytecode-provider (implementation of IBytecodeProvider).
+ Note: the bytecode-provider will be tooks in account only when specified in the app.config or web.config.
+ </xs:documentation>
+ </xs:annotation>
+ </xs:element>
<xs:element ref="reflection-optimizer" maxOccurs="1" minOccurs="0" />
<xs:element ref="session-factory" minOccurs="0" maxOccurs="1" />
</xs:sequence>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|