WebTestLocal.cs 497 B

12345678910111213141516171819202122
  1. using System;
  2. namespace MonoTests.SystemWeb.Framework
  3. {
  4. public partial class WebTest
  5. {
  6. static partial void CopyResourcesLocal ()
  7. {
  8. Type myself = typeof (WebTest);
  9. #if !DOTNET
  10. CopyResource (myself, "Web.mono.config", "Web.config");
  11. #endif
  12. #if NET_4_5
  13. CopyResource (myself, "profile.config.4.5", "profile.config");
  14. #elif NET_4_0
  15. CopyResource (myself, "profile.config.4.0", "profile.config");
  16. #else
  17. CopyResource (myself, "profile.config.2.0", "profile.config");
  18. #endif
  19. }
  20. }
  21. }