diff --git a/azure-pipelines.yml b/azure-pipelines.yml index be1dca3..41de489 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -3,7 +3,7 @@ # Add steps that publish symbols, save build artifacts, deploy, and more: # https://docs.microsoft.com/azure/devops/pipelines/apps/aspnet/build-aspnet-4 -name: 4.16.2$(Rev:.r) +name: 4.17.0$(Rev:.r) trigger: - main diff --git a/src/Mvp.Selections.Client/Mvp.Selections.Client.nuspec b/src/Mvp.Selections.Client/Mvp.Selections.Client.nuspec index f6b7805..b88221b 100644 --- a/src/Mvp.Selections.Client/Mvp.Selections.Client.nuspec +++ b/src/Mvp.Selections.Client/Mvp.Selections.Client.nuspec @@ -2,9 +2,9 @@ Mvp.Selections.Client - 4.16.0 + 4.17.0 - + Review Sentiment + + New profile link types MVP Selections API Client sc-ivanlieckens diff --git a/src/Mvp.Selections.Domain/ProfileLinkType.cs b/src/Mvp.Selections.Domain/ProfileLinkType.cs index 75aa559..d65561d 100644 --- a/src/Mvp.Selections.Domain/ProfileLinkType.cs +++ b/src/Mvp.Selections.Domain/ProfileLinkType.cs @@ -1,14 +1,18 @@ -namespace Mvp.Selections.Domain +using System.Diagnostics.CodeAnalysis; + +namespace Mvp.Selections.Domain; + +[SuppressMessage("ReSharper", "IdentifierTypo", Justification = "Match the names of the networks.")] +public enum ProfileLinkType { - public enum ProfileLinkType - { - Other, - Blog, - StackExchange, - Community, - Twitter, - Youtube, - Github, - LinkedIn - } -} + Other, + Blog, + StackExchange, + Community, + Twitter, + Youtube, + Github, + LinkedIn, + Slack, + Bluesky +} \ No newline at end of file