Azure.Core.AzureResourceProviderNamespaceAttribute
This attribute should be set on all client assemblies with value of one of the resource providers
from the https://docs.microsoft.com/azure/azure-resource-manager/management/azure-services-resource-providers list.
namespace Azure.Core
{
internal class AzureResourceProviderNamespaceAttribute : Attribute
{
public string ResourceProviderNamespace { get; }
public AzureResourceProviderNamespaceAttribute(string resourceProviderNamespace);
}
}