Skip to content

Commit

Permalink
[TA] No locale in links and add functionalities to package descriptio…
Browse files Browse the repository at this point in the history
…ns (Azure#17312)

* remove local from links and modify package description
  • Loading branch information
maririos authored and annelo-msft committed Feb 17, 2021
1 parent 99ab9a2 commit 3698088
Show file tree
Hide file tree
Showing 6 changed files with 56 additions and 54 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Azure Cognitive Services Text Analytics is a cloud service that provides advanced natural language processing over raw text, and features like Language Detection, Sentiment Analysis, Key Phrase Extraction, Named Entity Recognition, and Linked Entity Recognition.</Description>
<Description>Azure Cognitive Services Text Analytics is a cloud service that provides advanced natural language processing
over raw text, and features like Language Detection, Sentiment Analysis, Key Phrase Extraction, Named Entity Recognition,
Personally Identifiable Information (PII) Recognition, Linked Entity Recognition, Text Analytics for Health, and more.</Description>
<AssemblyTitle>Microsoft Azure.AI.TextAnalytics client library</AssemblyTitle>
<Version>5.1.0-beta.4</Version>
<ApiCompatVersion>5.0.0</ApiCompatVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Azure.AI.TextAnalytics
/// A word or phrase identified as an entity that can be categorized
/// as known type in a given taxonomy. The set of categories recognized by the
/// Text Analytics service is described at
/// <a href="https://docs.microsoft.com/en-us/azure/cognitive-services/Text-Analytics/named-entity-types"/>.
/// <a href="https://docs.microsoft.com/azure/cognitive-services/Text-Analytics/named-entity-types"/>.
/// </summary>
public readonly struct CategorizedEntity
{
Expand All @@ -33,7 +33,7 @@ internal CategorizedEntity(Entity entity)
/// Gets the entity category inferred by the Text Analytics service's
/// named entity recognition model. The list of available categories is
/// described at
/// <a href="https://docs.microsoft.com/en-us/azure/cognitive-services/Text-Analytics/named-entity-types"/>.
/// <a href="https://docs.microsoft.com/azure/cognitive-services/Text-Analytics/named-entity-types"/>.
/// </summary>
public EntityCategory Category { get; }

Expand All @@ -42,7 +42,7 @@ internal CategorizedEntity(Entity entity)
/// named entity recognition model. This property may not have a value if
/// a sub category doesn't exist for this entity. The list of available categories and
/// subcategories is described at
/// <a href="https://docs.microsoft.com/en-us/azure/cognitive-services/Text-Analytics/named-entity-types"/>.
/// <a href="https://docs.microsoft.com/azure/cognitive-services/Text-Analytics/named-entity-types"/>.
/// </summary>
public string SubCategory { get; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace Azure.AI.TextAnalytics
/// Overall predicted sentiment and confidence scores for the document.
/// It also includes per-sentence sentiment prediction.
/// <para>For more information regarding text sentiment, see
/// <a href="https://docs.microsoft.com/en-us/azure/cognitive-services/Text-Analytics/how-tos/text-analytics-how-to-sentiment-analysis"/>.</para>
/// <a href="https://docs.microsoft.com/azure/cognitive-services/Text-Analytics/how-tos/text-analytics-how-to-sentiment-analysis"/>.</para>
/// </summary>
public class DocumentSentiment
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace Azure.AI.TextAnalytics
/// The predicted sentiment and other analysis like Opinion mining
/// for each sentence in the corresponding document.
/// <para>For more information regarding text sentiment, see
/// <a href="https://docs.microsoft.com/en-us/azure/cognitive-services/Text-Analytics/how-tos/text-analytics-how-to-sentiment-analysis"/>.</para>
/// <a href="https://docs.microsoft.com/azure/cognitive-services/Text-Analytics/how-tos/text-analytics-how-to-sentiment-analysis"/>.</para>
/// </summary>
public readonly struct SentenceSentiment
{
Expand Down
Loading

0 comments on commit 3698088

Please sign in to comment.