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 =>
$$"""
// <auto-generated/>
namespace NSeguin.Dev.Web.HeroIcons
// <auto-generated/>
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>
public static readonly HeroIconKind {{PropertyName}} = new HeroIconKind("{{SvgFileName}}");
}
/// <summary>
/// Gets the <see cref="HeroIconKind"/> for the <c>{{SvgFileName}}</c> icon.
/// </summary>
public static readonly HeroIconKind {{PropertyName}} = new HeroIconKind("{{SvgFileName}}");
}
}
""";
private static string ToPascalCase(string value)