Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

23 lines
497 B
C#

using System;
namespace MonoTests.SystemWeb.Framework
{
public partial class WebTest
{
static partial void CopyResourcesLocal ()
{
Type myself = typeof (WebTest);
#if !DOTNET
CopyResource (myself, "Web.mono.config", "Web.config");
#endif
#if NET_4_5
CopyResource (myself, "profile.config.4.5", "profile.config");
#elif NET_4_0
CopyResource (myself, "profile.config.4.0", "profile.config");
#else
CopyResource (myself, "profile.config.2.0", "profile.config");
#endif
}
}
}