whitespace

This commit is contained in:
Nick Seguin 2024-02-25 18:05:49 -06:00
parent 311aafdd9b
commit 365cb6289e
Signed by: nseguin
GPG key ID: 68C99FA84079021D

View file

@ -47,17 +47,17 @@ public class HeroIconsSourceGenerator : IIncrementalGenerator
public string Code => public string Code =>
$$""" $$"""
// <auto-generated/> // <auto-generated/>
namespace NSeguin.Dev.Web.HeroIcons namespace NSeguin.Dev.Web.HeroIcons
{
public partial class HeroIcon
{ {
public partial class HeroIcon /// <summary>
{ /// Gets the <see cref="HeroIconKind"/> for the <c>{{SvgFileName}}</c> icon.
/// <summary> /// </summary>
/// Gets the <see cref="HeroIconKind"/> for the <c>{{SvgFileName}}</c> icon. public static readonly HeroIconKind {{PropertyName}} = new HeroIconKind("{{SvgFileName}}");
/// </summary>
public static readonly HeroIconKind {{PropertyName}} = new HeroIconKind("{{SvgFileName}}");
}
} }
}
"""; """;
private static string ToPascalCase(string value) private static string ToPascalCase(string value)