From 135211daa4f1269c8bf23f32dd24d1909cb6a664 Mon Sep 17 00:00:00 2001 From: Henrik Lau Eriksson Date: Mon, 11 Apr 2022 21:53:51 +0200 Subject: [PATCH] :bookmark: 2.0.0 --- .../GEmojiSharp.AspNetCore.csproj | 5 +++-- src/GEmojiSharp.Blazor/GEmojiSharp.Blazor.csproj | 5 +++-- src/GEmojiSharp/GEmojiSharp.csproj | 10 ++++++++-- 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/src/GEmojiSharp.AspNetCore/GEmojiSharp.AspNetCore.csproj b/src/GEmojiSharp.AspNetCore/GEmojiSharp.AspNetCore.csproj index 7a113f5..460b103 100644 --- a/src/GEmojiSharp.AspNetCore/GEmojiSharp.AspNetCore.csproj +++ b/src/GEmojiSharp.AspNetCore/GEmojiSharp.AspNetCore.csproj @@ -2,9 +2,10 @@ netstandard2.0 - 1.5.0 + 2.0.0 -👽 Update to https://github.com/github/gemoji/releases/tag/v4.0.0.rc3 +- Renamed GEmojiSharp.TagHelpers to GEmojiSharp.AspNetCore +- Added HtmlHelpers Henrik Lau Eriksson GitHub Emoji for ASP.NET Core diff --git a/src/GEmojiSharp.Blazor/GEmojiSharp.Blazor.csproj b/src/GEmojiSharp.Blazor/GEmojiSharp.Blazor.csproj index eae9f28..55e89ba 100644 --- a/src/GEmojiSharp.Blazor/GEmojiSharp.Blazor.csproj +++ b/src/GEmojiSharp.Blazor/GEmojiSharp.Blazor.csproj @@ -2,9 +2,10 @@ net6.0 - 1.5.0 + 2.0.0 -👽 Update to https://github.com/github/gemoji/releases/tag/v4.0.0.rc3 +- Target net6.0 +- The css and js files will automatically be referenced Henrik Lau Eriksson GitHub Emoji for Blazor diff --git a/src/GEmojiSharp/GEmojiSharp.csproj b/src/GEmojiSharp/GEmojiSharp.csproj index b580b7e..f8ff4a4 100644 --- a/src/GEmojiSharp/GEmojiSharp.csproj +++ b/src/GEmojiSharp/GEmojiSharp.csproj @@ -2,9 +2,15 @@ netstandard2.0 - 1.5.0 + 2.0.0 -👽 Update to https://github.com/github/gemoji/releases/tag/v4.0.0.rc3 +- New: + - Emoji.Alias("😀") // :grinning: + - Emoji.Demojify("Hello, 🌍") // Hello, :earth_africa: + - Emoji.RegexPattern // Regular expression pattern to match all supported emojis +- Update: + - Emoji.Get("😀") // By raw emoji + - Emoji.Find(":grinning:") // Query for alias enclosed by colons Henrik Lau Eriksson GitHub Emoji for C# and .NET