Skip to content

Commit e8de13f

Browse files
authored
Fix prefix for .NET Core
1 parent 8067a58 commit e8de13f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/net45/WampSharp/Core/Utilities/CastleDynamicProxyGenerator.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace WampSharp.Core.Utilities
88
{
99
internal static class CastleDynamicProxyGenerator
1010
{
11-
private static string PREFIX = typeof(CastleDynamicProxyGenerator).Assembly.GetName().Name + ".";
11+
private static string PREFIX = "WampSharp.";
1212

1313
public static readonly ProxyGenerator Instance = GetProxyGenerator();
1414

@@ -30,4 +30,4 @@ private static ModuleScope GetModuleScope()
3030
}
3131
}
3232

33-
#endif
33+
#endif

0 commit comments

Comments
 (0)