Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TA] No locale in links and add functionalities to package descriptions #17312

Merged
merged 2 commits into from
Dec 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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