Beispiel #1
0
 internal static string PropertyFileName(string outputPath, PropertyInfo property)
 {
     return(Path.Combine(
                outputPath,
                $"{FileNameHelper.NormaliseType(property.DeclaringType)}.{property.Name.Replace('.', '-').ToLowerInvariant()}.md"));
 }
Beispiel #2
0
 internal static string TypeFileName(string outputPath, Type type)
 {
     return(Path.Combine(outputPath, $"{FileNameHelper.NormaliseType(type)}.md"));
 }
Beispiel #3
0
 internal static string MethodFileName(string outputPath, MethodBase method)
 {
     return(Path.Combine(
                outputPath,
                $"{FileNameHelper.NormaliseType(method.DeclaringType)}.{method.Name.ToLowerInvariant()}.md"));
 }