2006-04-13 Chris Toshok <toshok@ximian.com>
authorChris Toshok <toshok@novell.com>
Thu, 13 Apr 2006 17:24:08 +0000 (17:24 -0000)
committerChris Toshok <toshok@novell.com>
Thu, 13 Apr 2006 17:24:08 +0000 (17:24 -0000)
* data/net_2_0/machine.config: add system.data section listing the
SqlClient provider.  Also add system.web section listing the
membership and role providers.  This is here instead of in
web.config because the providers are meant to be available to
non-web applications as well.

svn path=/trunk/mono/; revision=59465

ChangeLog
data/net_2_0/machine.config

index 76d907a3517280881a2b42f9f343fa9956d0b683..b3ed9f62e6fa16ac7531f33c71ea8d4c025060e2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2006-04-13  Chris Toshok  <toshok@ximian.com>
+
+       * data/net_2_0/machine.config: add system.data section listing the
+       SqlClient provider.  Also add system.web section listing the
+       membership and role providers.  This is here instead of in
+       web.config because the providers are meant to be available to
+       non-web applications as well.
+
 2006-04-11  Chris Toshok  <toshok@ximian.com>
 
        * data/net_2_0/web.config: add the builtin expression builders.
index cacf7ef6141f56d4d9257e71dd9cd949499ff02b..7b801644eb93ac6783dad517ae7863d6ef9fa1e5 100644 (file)
                        <map Token="7c307b91aa13d208" PublicKey="002400000480000094000000060200000024000052534131000400000100010079159977d2d03a8e6bea7a2e74e8d1afcc93e8851974952bb480a12c9134474d04062447c37e0e68c080536fcf3c3fbe2ff9c979ce998475e506e8ce82dd5b0f350dc10e93bf2eeecf874b24770c5081dbea7447fddafa277b22de47d6ffea449674a4f9fccf84d15069089380284dbdd35f46cdff12a1bd78e4ef0065d016df" />
                </pubTokenMapping>
        </strongNames>
+
+       <system.data>
+               <DbProviderFactories>
+                       <add name="SqlClient Data Provider" invariant="System.Data.SqlClient" description=".Net Framework Data Provider for SqlServer" type="System.Data.SqlClient.SqlClientFactory, System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
+               </DbProviderFactories>
+       </system.data>
+
+       <system.web>
+               <membership>
+                       <providers>
+                               <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" applicationName="/" />
+                       </providers>
+               </membership>
+
+               <roleManager>
+                       <providers>
+                               <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" applicationName="/" />
+                       </providers>
+               </roleManager>
+       </system.web>
 </configuration>