diff --git a/eng/Directory.Build.Data.props b/eng/Directory.Build.Data.props
index 2598f04d10aa..8cc3a4804cb4 100644
--- a/eng/Directory.Build.Data.props
+++ b/eng/Directory.Build.Data.props
@@ -55,7 +55,7 @@
true
$(AZURE_DEV_UPDATESOURCESONBUILD)
pwsh
- false
+ true
diff --git a/sdk/core/Azure.Core.Amqp/src/AmqpAddress.cs b/sdk/core/Azure.Core.Amqp/src/AmqpAddress.cs
index aab938ac9d45..fb5a06dd69cf 100644
--- a/sdk/core/Azure.Core.Amqp/src/AmqpAddress.cs
+++ b/sdk/core/Azure.Core.Amqp/src/AmqpAddress.cs
@@ -86,13 +86,13 @@ public bool Equals(AmqpAddress other) =>
public bool Equals(string other) =>
_address == other;
- ///
+ /// Compares two values for equality.
public static bool operator ==(AmqpAddress left, AmqpAddress right)
{
return left.Equals(right);
}
- ///
+ /// Compares two values for inequality.
public static bool operator !=(AmqpAddress left, AmqpAddress right)
{
return !(left == right);
diff --git a/sdk/core/Azure.Core.Amqp/src/AmqpMessageId.cs b/sdk/core/Azure.Core.Amqp/src/AmqpMessageId.cs
index 0604fdd2627d..2456fa3e9490 100644
--- a/sdk/core/Azure.Core.Amqp/src/AmqpMessageId.cs
+++ b/sdk/core/Azure.Core.Amqp/src/AmqpMessageId.cs
@@ -87,13 +87,13 @@ public bool Equals(AmqpMessageId other) =>
public bool Equals(string other) =>
_messageIdString == other;
- ///
+ /// Compares two values for equality.
public static bool operator ==(AmqpMessageId left, AmqpMessageId right)
{
return left.Equals(right);
}
- ///
+ /// Compares two values for inequality.
public static bool operator !=(AmqpMessageId left, AmqpMessageId right)
{
return !(left == right);
diff --git a/sdk/eventgrid/Microsoft.Azure.WebJobs.Extensions.EventGrid/src/OutputBinding/EventGridAttribute.cs b/sdk/eventgrid/Microsoft.Azure.WebJobs.Extensions.EventGrid/src/OutputBinding/EventGridAttribute.cs
index 81f68221560e..8b3984247b4c 100644
--- a/sdk/eventgrid/Microsoft.Azure.WebJobs.Extensions.EventGrid/src/OutputBinding/EventGridAttribute.cs
+++ b/sdk/eventgrid/Microsoft.Azure.WebJobs.Extensions.EventGrid/src/OutputBinding/EventGridAttribute.cs
@@ -6,7 +6,7 @@
namespace Microsoft.Azure.WebJobs.Extensions.EventGrid
{
- /// Attribute to specify parameters for the Event Grid output binding
+ /// Attribute to specify parameters for the Event Grid output binding.
///
[AttributeUsage(AttributeTargets.Parameter | AttributeTargets.ReturnValue)]
[Binding]
diff --git a/sdk/search/Azure.Search.Documents/src/SearchDocument/SearchDocument.Dictionary.cs b/sdk/search/Azure.Search.Documents/src/SearchDocument/SearchDocument.Dictionary.cs
index 41d9351cdab1..9a775d57cc20 100644
--- a/sdk/search/Azure.Search.Documents/src/SearchDocument/SearchDocument.Dictionary.cs
+++ b/sdk/search/Azure.Search.Documents/src/SearchDocument/SearchDocument.Dictionary.cs
@@ -32,13 +32,13 @@ public bool TryGetValue(string key, out object value) =>
///
public ICollection Keys => _values.Keys;
- ///
+ ///
ICollection