f3e3aab35a
Former-commit-id: 9c2cb47f45fa221e661ab616387c9cda183f283d
21 lines
379 B
C#
21 lines
379 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_6
|
|
CopyResource (myself, "profile.config.4.x", "profile.config");
|
|
#else
|
|
#error "Unknown profile"
|
|
#endif
|
|
}
|
|
}
|
|
}
|