//------------------------------------------------------------------------------ // // This code was generated by a tool. // Generated {{ date.now | date.to_string `%Y-%m-%d %k:%M` }} // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using System; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; namespace Spectre.Console { /// /// Utility class for working with emojis. /// internal static partial class Emoji { private static readonly Dictionary _emojis = new Dictionary(StringComparer.InvariantCultureIgnoreCase) { {{~ for emoji in emojis }} { "{{ emoji.name }}", "{{ emoji.code }}" }, {{~ end ~}} }; } }