[bcl] Fix dll names and InternalsVisibleTo for test assemblies
[mono.git] / mcs / class / System.Web / Test / mainsoft / NunitWeb / NunitWeb / Resources / Web.mono.config
1 <?xml version="1.0" encoding="utf-8" ?>
2 <configuration>
3   <configSections>
4                 <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
5                         <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
6                                 <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/>
7                                 <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
8                                         <section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="Everywhere"/>
9                                         <section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/>
10                                         <section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/>
11                                 </sectionGroup>
12                         </sectionGroup>
13                         <section name="CustomTags" restartOnExternalChanges="false" type="MonoTests.SystemWeb.Framework.CustomSection, net_4_x_System.Web_test" />
14                 </sectionGroup>
15         </configSections>
16   <appSettings>
17     <add key="strvalue" value="str" />
18     <add key="intvalue" value="123" />
19   </appSettings>
20   
21   <!-- DO NOT REMOVE: USED BY TESTS -->
22   <CustomTags>
23     <sections>
24       <add area="activityTemplateTitle">
25         <add name="a" />
26       </add>
27       <add area="Something">
28       </add>
29     </sections>
30   </CustomTags>
31   
32   <system.web>
33       <siteMap enabled="true">
34           <providers>
35               <add name="TestSiteMapProvider" type="Tests.TestSiteMapProvider" />
36           </providers>
37       </siteMap>
38     <compilation debug="true" batch="false" numRecompilesBeforeAppRestart="100000">
39         <assemblies>
40                 <add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
41         </assemblies>
42     </compilation>
43     <httpHandlers>
44       <add path="WebResource.axd" verb="GET" type="System.Web.Handlers.AssemblyResourceLoader" validate="true" />
45       <remove verb="*" path="*.asmx"/>
46       <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
47       <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
48       <add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/>
49     </httpHandlers>
50     <pages enableSessionState="false">
51                         <controls>
52                                 <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
53                         </controls>
54     </pages>
55     <membership defaultProvider="FakeProvider">
56       <providers>
57         <add name="FakeProvider" type="MonoTests.SystemWeb.Framework.FakeMembershipProvider"
58              enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="true"
59              applicationName="/" requiresUniqueEmail="false" passwordFormat="Hashed"
60              maxInvalidPasswordAttempts="5" minRequiredPasswordLength="7"
61              minRequiredNonalphanumericCharacters="1" passwordAttemptWindow="10"
62              passwordStrengthRegularExpression="" />
63       </providers>
64     </membership>
65
66     <roleManager defaultProvider="TheRoleProvider" enabled="true">
67       <providers>
68         <clear />
69         <add name="TheRoleProvider" type="MonoTests.SystemWeb.Framework.TestRoleProvider"/>
70       </providers>
71     </roleManager>
72   </system.web>
73         <system.web.extensions>
74                 <scripting>
75                         <webServices>
76                                 <!-- Uncomment this line to customize maxJsonLength and add a custom converter -->
77                                 <!--
78       <jsonSerialization maxJsonLength="500">
79         <converters>
80           <add name="ConvertMe" type="Acme.SubAcme.ConvertMeTypeConverter"/>
81         </converters>
82       </jsonSerialization>
83       -->
84                                 <!-- Uncomment this line to enable the authentication service. Include requireSSL="true" if appropriate. -->
85                                 <!--
86         <authenticationService enabled="true" requireSSL = "true|false"/>
87       -->
88                                 <!-- Uncomment these lines to enable the profile service. To allow profile properties to be retrieved
89            and modified in ASP.NET AJAX applications, you need to add each property name to the readAccessProperties and
90            writeAccessProperties attributes. -->
91                                 <!--
92       <profileService enabled="true"
93                       readAccessProperties="propertyname1,propertyname2"
94                       writeAccessProperties="propertyname1,propertyname2" />
95       -->
96                         </webServices>
97                         <!--
98       <scriptResourceHandler enableCompression="true" enableCaching="true" />
99       -->
100                 </scripting>
101         </system.web.extensions>
102   <system.net>
103     <mailSettings>
104       <smtp from="heh@heh.com">
105         <network host="localhost" port="125"/>
106       </smtp>
107     </mailSettings>
108   </system.net>
109 </configuration>