Skip to content

Commit 3698088

Browse files
maririosannelo-msft
authored andcommitted
[TA] No locale in links and add functionalities to package descriptions (Azure#17312)
* remove local from links and modify package description
1 parent 99ab9a2 commit 3698088

File tree

6 files changed

+56
-54
lines changed

6 files changed

+56
-54
lines changed

sdk/textanalytics/Azure.AI.TextAnalytics/src/Azure.AI.TextAnalytics.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<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>
3+
<Description>Azure Cognitive Services Text Analytics is a cloud service that provides advanced natural language processing
4+
over raw text, and features like Language Detection, Sentiment Analysis, Key Phrase Extraction, Named Entity Recognition,
5+
Personally Identifiable Information (PII) Recognition, Linked Entity Recognition, Text Analytics for Health, and more.</Description>
46
<AssemblyTitle>Microsoft Azure.AI.TextAnalytics client library</AssemblyTitle>
57
<Version>5.1.0-beta.4</Version>
68
<ApiCompatVersion>5.0.0</ApiCompatVersion>

sdk/textanalytics/Azure.AI.TextAnalytics/src/CategorizedEntity.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace Azure.AI.TextAnalytics
99
/// A word or phrase identified as an entity that can be categorized
1010
/// as known type in a given taxonomy. The set of categories recognized by the
1111
/// Text Analytics service is described at
12-
/// <a href="https://docs.microsoft.com/en-us/azure/cognitive-services/Text-Analytics/named-entity-types"/>.
12+
/// <a href="https://docs.microsoft.com/azure/cognitive-services/Text-Analytics/named-entity-types"/>.
1313
/// </summary>
1414
public readonly struct CategorizedEntity
1515
{
@@ -33,7 +33,7 @@ internal CategorizedEntity(Entity entity)
3333
/// Gets the entity category inferred by the Text Analytics service's
3434
/// named entity recognition model. The list of available categories is
3535
/// described at
36-
/// <a href="https://docs.microsoft.com/en-us/azure/cognitive-services/Text-Analytics/named-entity-types"/>.
36+
/// <a href="https://docs.microsoft.com/azure/cognitive-services/Text-Analytics/named-entity-types"/>.
3737
/// </summary>
3838
public EntityCategory Category { get; }
3939

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

sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentSentiment.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace Azure.AI.TextAnalytics
1111
/// Overall predicted sentiment and confidence scores for the document.
1212
/// It also includes per-sentence sentiment prediction.
1313
/// <para>For more information regarding text sentiment, see
14-
/// <a href="https://docs.microsoft.com/en-us/azure/cognitive-services/Text-Analytics/how-tos/text-analytics-how-to-sentiment-analysis"/>.</para>
14+
/// <a href="https://docs.microsoft.com/azure/cognitive-services/Text-Analytics/how-tos/text-analytics-how-to-sentiment-analysis"/>.</para>
1515
/// </summary>
1616
public class DocumentSentiment
1717
{

sdk/textanalytics/Azure.AI.TextAnalytics/src/SentenceSentiment.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace Azure.AI.TextAnalytics
1313
/// The predicted sentiment and other analysis like Opinion mining
1414
/// for each sentence in the corresponding document.
1515
/// <para>For more information regarding text sentiment, see
16-
/// <a href="https://docs.microsoft.com/en-us/azure/cognitive-services/Text-Analytics/how-tos/text-analytics-how-to-sentiment-analysis"/>.</para>
16+
/// <a href="https://docs.microsoft.com/azure/cognitive-services/Text-Analytics/how-tos/text-analytics-how-to-sentiment-analysis"/>.</para>
1717
/// </summary>
1818
public readonly struct SentenceSentiment
1919
{

0 commit comments

Comments
 (0)