Skip to content

Commit cbf5109

Browse files
authored
Fix class name generator for skeletons (#72)
***UPDATE_DEPENDENTS***
1 parent 7c66d6a commit cbf5109

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

source/MetadataProcessor.Core/Utility/NativeMethodsCrc.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ internal static string GetMethodName(
6767
var name = string.Concat(method.Name, (method.IsStatic ? "___STATIC__" : "___"),
6868
string.Join("__", GetAllParameters(method)));
6969

70-
var originalName = name.Replace(".", "_");
70+
var originalName = name.Replace(".", "_")
71+
.Replace("/", "");
7172

7273
return originalName;
7374
}

0 commit comments

Comments
 (0)