PageRenderTime 37ms CodeModel.GetById 12ms RepoModel.GetById 0ms app.codeStats 0ms

/V4/Quickstarts/Modularity/ModularityWithUnity.Tests.AcceptanceTest/ModularityWithUnity.Tests.AcceptanceTest/App.config

#
ASP.NET | 49 lines | 41 code | 1 blank | 7 comment | 0 complexity | fa5e0ce991d415c83e2a06dd83803602 MD5 | raw file
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <configSections>
  4. <sectionGroup name="BrowserSupport">
  5. <section name="Browsers" type="System.Configuration.NameValueSectionHandler, System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, Custom=null" />
  6. </sectionGroup>
  7. </configSections>
  8. <appSettings>
  9. <!-- Application Location parameters -->
  10. <add key="UnityAppLocation" value="\UNITY\ModularityWithUnity.Desktop.exe"/>
  11. <add key="UnityAppProcessName" value="ModularityWithUnity.Desktop"/>
  12. <add key="SilverlightAppLocation" value="http://localhost:47648/Default.html"/>
  13. <add key="SilverlightAppHostRelativeLocation" value="\Modularity\Silverlight\ModularityWithUnity\ModularityWithUnity.Silverlight.Web" />
  14. <!-- Browser Path and process parameters -->
  15. <add key="IEPartialPath" value="\\Internet Explorer\\iexplore.exe" />
  16. <add key="FirefoxPartialPath" value="\\Mozilla Firefox\firefox.exe" />
  17. <add key="SafariPartialPath" value="\\Safari\Safari.exe" />
  18. <add key="IEAppProcessName" value="iexplore" />
  19. <add key="FirefoxAppProcessName" value="firefox" />
  20. <add key="SafariAppProcessName" value="Safari" />
  21. <!-- Time to wait for the application to be launched -->
  22. <add key="ApplicationLoadWaitTime" value="60000" />
  23. <!-- Test Data config files -->
  24. <add key="TestDataInputFile" value=".\TestData\TestDataInput.resx" />
  25. <add key="ControlIdentifiersFile" value=".\TestData\ControlIdentifiers.resx" />
  26. <add key="ClientSettingsProvider.ServiceUri" value="" />
  27. </appSettings>
  28. <!-- Config section for Cross-Browser support -->
  29. <BrowserSupport>
  30. <Browsers>
  31. <add key="InternetExplorer" value="AcceptanceTestLibrary.Common.CrossBrowserSupport.InternetExplorerLauncher" />
  32. <!--<add key="FireFox" value="AcceptanceTestLibrary.Common.CrossBrowserSupport.FirefoxLauncher" />
  33. <add key="Safari" value="AcceptanceTestLibrary.Common.CrossBrowserSupport.SafariLauncher" />-->
  34. </Browsers>
  35. </BrowserSupport>
  36. <system.web>
  37. <membership defaultProvider="ClientAuthenticationMembershipProvider">
  38. <providers>
  39. <add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" />
  40. </providers>
  41. </membership>
  42. <roleManager defaultProvider="ClientRoleProvider" enabled="true">
  43. <providers>
  44. <add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" />
  45. </providers>
  46. </roleManager>
  47. </system.web>
  48. </configuration>