Azure SDK for .NET (August 2022)
The Azure SDK team is pleased to announce our August 2022 client library releases.
89 packages released this month.
Stable Packages (22)
-
Azure Mixed Reality Authentication
-
Communication Identity
-
ConfidentialLedger
-
Digital Twins - Core
-
Event Grid
-
Extensions - Azure
-
Resource Management - Cdn
-
Resource Management - Compute
-
Resource Management - Container Registry
-
Resource Management - Core
-
Resource Management - Cosmos DB
-
Resource Management - Event Hubs
-
Resource Management - Key Vault
-
Resource Management - Managed Service Identity
-
Resource Management - Network
-
Resource Management - Resources
-
Resource Management - Service Bus
-
Resource Management - Service Linker
-
Resource Management - Sql
-
Resource Management - Web PubSub
-
Service Bus
-
WebJobs Extensions - Service Bus
Patch Updates (5)
-
Event Hubs
-
Event Hubs - Event Processor
-
Identity
-
Resource Management - Core
-
WebJobs Extensions - Event Hubs
Beta Packages (57)
-
Azure Object Anchors Conversion
-
Azure.Identity.BrokeredAuthentication
-
Cognitive Search
-
Communication Rooms
-
ConfidentialLedger
-
Form Recognizer
-
Identity
-
IoT Device Update
-
Question Answering
-
Relay
-
Resource Management - Alerts Management
-
Resource Management - Api Management
-
Resource Management - App Configuration
-
Resource Management - App Service
-
Resource Management - Arc ScVmm
-
Resource Management - Authorization
-
Resource Management - Azure Stack HCI
-
Resource Management - Batch
-
Resource Management - Cognitive Services
-
Resource Management - Communication
-
Resource Management - Confidential Ledger
-
Resource Management - Connected VMware vSphere
-
Resource Management - Container Apps
-
Resource Management - Container Instance
-
Resource Management - Container Registry
-
Resource Management - Container Service
-
Resource Management - DNS
-
Resource Management - Data Factory
-
Resource Management - Device Update
-
Resource Management - Dynatrace
-
Resource Management - Edge Order
-
Resource Management - Extended Locations
-
Resource Management - Fluid Relay
-
Resource Management - Grafana
-
Resource Management - Guest Configuration
-
Resource Management - HDInsight
-
Resource Management - Hybrid Connectivity
-
Resource Management - IoT Hub
-
Resource Management - IotCentral
-
Resource Management - Logic
-
Resource Management - Machine Learning
-
Resource Management - Media
-
Resource Management - Migrate
-
Resource Management - MySql
-
Resource Management - Network Function
-
Resource Management - Notification Hubs
-
Resource Management - PostgreSql
-
Resource Management - Redis
-
Resource Management - Redis Enterprise Cache
-
Resource Management - Reservations
-
Resource Management - ServiceFabric
-
Resource Management - Sql Virtual Machine
-
Resource Management - Storage
-
Resource Management - Storage Pool
-
Resource Management - Stream Analytics
-
Text Analytics
-
Web PubSub
Release highlights
Azure Mixed Reality Authentication 1.1.0 Changelog
Key Bug Fixes
- The
Azure.Core
dependency was updated to1.25.0
. - The
System.IdentityModel.Tokens.Jwt
dependency was updated to6.5.0
. - The
System.Text.Json
dependency was updated to4.7.2
.
Azure Object Anchors Conversion 0.3.0-beta.4 Changelog
Breaking Changes
ServiceVersion
enum values are now pascal case.
Azure.Identity.BrokeredAuthentication 1.0.0-beta.3 Changelog
Breaking Changes
- Added required constructor parameter
parentWindowHandle
toInteractiveBrowserCredentialBrokerOptions
, to require setting the parent window for the authentication broker.
Cognitive Search 11.4.0-beta.9 Changelog
Features Added
- Added support for Lexical normalizers in
SimpleField
andSearchableField
. - Added multi-cloud support via
SearchClientOptions.Audience
to allow users to select the Azure cloud where the resource is located (#30306).
Communication Identity 1.1.0 Changelog
Features Added
- Added support to integrate communication as Teams user with Azure Communication Services:
- Added
GetTokenForTeamsUser(GetTokenForTeamsUserOptions options, CancellationToken cancellationToken = default)
method that provides the ability to exchange an Azure AD access token of a Teams user for a Communication Identity access token toCommunicationIdentityClient
. - Removed
ServiceVersion.V2021_10_31_preview
- Added a new API version
ServiceVersion.V2022_06_01
that is now the default API version
Communication Rooms 1.0.0-beta.1 Changelog
- Initial version of Azure Communication Services Rooms .NET SDK.
ConfidentialLedger 1.0.0 Changelog
Breaking Changes
- The
ConfidentialLedgerIdentityClient
was renamed toConfidentialLedgerCertificateClient
and was moved to theAzure.Security.ConfidentialLedger.Certificate
namespace - The automatic configuration to trust the service’s TLS certificate in
ConfidentialLedgerClient
now checks that the final certificate in the server’s certificate chain matches the trusted TLS certificate. Previously the client checked if the thumbprint of the trusted TLS certificate was present anywhere in the server’s certificate chain. - The
GetCollections
andGetConsortiumMembers
methods onConfidentialLedgerClient
now returnPageable<BinaryData>
ConfidentialLedger 1.1.0-beta.1 Changelog
Features Added
- Added the
CertificateEndpoint
property toConfidentialLedgerClientOptions
to allow configuration of a custom certificate endpoint. When not configured, the current default is used.
Digital Twins - Core 1.4.0 Changelog
New Features
- Updated service API version to use API version 2022-05-31 by default.
- Added support for the new, writeable property metadata
SourceTime
toDigitalTwinPropertyMetadata
. - Added support for
LastUpdatedOn
for digital twins and components.
Fixes and improvements
- Updated samples to illustrate usage of
SourceTime
,LastUpdatedOn
at digital twin and component metadata level, and use ofDigitalTwinComponentMetadata
.
Event Grid 4.11.0 Changelog
Features Added
- Added support for sending events to partner channels.
Event Hubs 5.7.2 Changelog
Bugs Fixed
- Fixed a regression with the
EventHubProducerClient
overloads ofSendAsync
which accept an enumerable of events. When specifying a partition key, it was ignored when sending. As a result, the Event Hub applied round-robin partition assignment, spreading events across partitions rather than grouping them in a single partition.
Event Hubs - Event Processor 5.7.2 Changelog
Acknowledgments
Thank you to our developer community members who helped to make the Event Hubs client libraries better with their contributions to this release:
- Daniel Marbach (GitHub)
Other Changes
- Miscellaneous performance improvements by reducing memory allocations. (A community contribution, courtesy of danielmarbach)
Extensions - Azure 1.3.0 Changelog
Features Added
- Added support for constructing a
ManagedIdentityCredential
from config by setting themanagedIdentityResourceId
key.
Extensions - Azure 1.4.0 Changelog
Features Added
- Added the
AddAzureClientsCore
method overload that has a parameter to allow enabling log forwarding toILogger
.
Form Recognizer 4.0.0-beta.5 Changelog
Breaking Changes
- Updated all long-running operation client methods to a new pattern. This affects
StartAnalyzeDocument
,StartAnalyzeDocumentFromUri
,StartBuildModel
,StartCopyModelTo
, andStartCreateComposedModel
methods. Changes are: - Removed the “Start” prefix. For example,
StartAnalyzeDocument
was renamed toAnalyzeDocument
. - Added a new required parameter:
waitUntil
. It specifies whether the operation should run to completion before returning or not, removing the need to callWaitForCompletion
in most scenarios. - Updated
DocumentModelInfo
andDocumentModel
: - Renamed them to
DocumentModelSummary
andDocumentModelDetails
, respectively. - Removed the inheritance between them.
- Updated
ModelOperationInfo
andModelOperation
: - Renamed them to
DocumentModelOperationSummary
andDocumentModelOperationDetails
, respectively. - Removed the inheritance between them.
- Updated
ResourceLocation
to be aUri
in both. - Renamed
AccountProperties
toResourceDetails
. - Renamed method
GetAccountProperties
toGetResourceDetails
. - Renamed method
StartCreateComposedModel
toComposeModel
. - Renamed
BuildModelOptions.ModelDescription
toDescription
. - Renamed
modelDescription
parameters todescription
in methodsGetCopyAuthorization
andStartCreateComposedModel
(now calledComposeModel
). - Renamed
CopyAuthorization.ExpirationDateTime
toExpiresOn
. - Removed
DocumentCaption
andDocumentFootnote
features. - Updated the return type of
StartCreateComposedModel
(now calledComposeModel
) to aComposeModelOperation
. - Renamed class
CopyModelOperation
toCopyModelToOperation
. - Renamed parameter
analyzeDocumentOptions
tooptions
in theStartAnalyzeDocument
andStartAnalyzeDocumentFromUri
methods (now calledAnalyzeDocument
andAnalyzeDocumentFromUri
). - Renamed parameter
buildModelOptions
tooptions
in theStartBuildModel
method (now calledBuildModel
). FormRecognizerClientOptions.Audience
andDocumentAnalysisClientOptions.Audience
now default tonull
.- In the
DocumentAnalysis
namespace,CopyModelOperation.PercentCompleted
andBuildModelOperation.PercentCompleted
now throw anInvalidOperationException
if called before a call toUpdateStatus
. - Updated
CopyAuthorization.TargetModelLocation
to be aUri
instead ofstring
. - Removed method
DocumentAnalysisModelFactory.CopyAuthorization
.
Features Added
- Added
Length
property toBoundingPolygon
. - Added a public constructor to
CopyAuthorization
. - Added properties
AccessToken
andTargetResourceId
toCopyAuthorization
.
Identity 1.6.1 Changelog
Bugs Fixed
- Fixed
AZURE_REGIONAL_AUTHORITY_NAME
support inClientCertificateCredential
#29112 - Fixed regression in
SharedTokenCacheCredential
default behavior #28029 - Fixed legacy PowerShell discovery failures #28030 (A community contribution, courtesy of nerddtvg)
Identity 1.7.0-beta.1 Changelog
Features Added
ManagedIdentityCredential
will now internally cache tokens, so applications can callGetToken
andGetTokenAsync
directly without needing to cache to avoid throttleling.
IoT Device Update 1.0.0-beta.4 Changelog
Breaking Changes
- DeviceUpdateClient models updated
- DeviceManagementClient models updated
Features Added
- Added RelatedFiles and DownloadHandler to Update
- Updated various model that reference update to include not only UpdateId but also update Description and FriendlyName
- Removed device tag concept
- Allow to filter by deployment status in the GetDevicesAsync method
- Added ability to update device class friendly name
- Added ability to delete device class
- Added device class subgroups to groups
- Added new method to retrieve devices health information
Question Answering 1.1.0-beta.2 Changelog
Features Added
- Added support for Azure Active Directory (AAD) authentication.
Relay 1.0.0-beta.2 Changelog
Resource Management - Alerts Management 1.0.0-beta.1 Changelog
Resource Management - Api Management 1.0.0-beta.1 Changelog
Resource Management - App Configuration 1.0.0-beta.5 Changelog
Resource Management - App Service 1.0.0-beta.3 Changelog
Resource Management - Arc ScVmm 1.0.0-beta.1 Changelog
Resource Management - Authorization 1.0.0-beta.1 Changelog
Resource Management - Azure Stack HCI 1.0.0-beta.5 Changelog
Resource Management - Batch 1.0.0-beta.1 Changelog
Resource Management - Cdn 1.0.0 Changelog
Resource Management - Cognitive Services 1.0.0-beta.1 Changelog
Resource Management - Communication 1.1.0-beta.5 Changelog
Resource Management - Compute 1.0.0 Changelog
Resource Management - Confidential Ledger 1.0.0-beta.1 Changelog
Resource Management - Connected VMware vSphere 1.0.0-beta.5 Changelog
Resource Management - Container Apps 1.0.0-beta.1 Changelog
Resource Management - Container Instance 1.0.0-beta.1 Changelog
Resource Management - Container Registry 1.0.0-beta.1 Changelog
Resource Management - Container Registry 1.0.0 Changelog
Resource Management - Container Service 1.0.0-beta.1 Changelog
Resource Management - Core 1.2.0 Changelog
Resource Management - Core 1.2.1 Changelog
Resource Management - Core 1.3.0 Changelog
Resource Management - Cosmos DB 1.0.0 Changelog
Resource Management - DNS 1.0.0-beta.1 Changelog
Resource Management - Data Factory 1.0.0-beta.1 Changelog
Resource Management - Device Update 1.0.0-beta.6 Changelog
Resource Management - Dynatrace 1.0.0-beta.2 Changelog
Resource Management - Edge Order 1.0.0-beta.4 Changelog
Resource Management - Event Hubs 1.0.0 Changelog
Resource Management - Extended Locations 1.0.0-beta.1 Changelog
Resource Management - Fluid Relay 1.0.0-beta.1 Changelog
Resource Management - Grafana 1.0.0-beta.2 Changelog
Resource Management - Guest Configuration 1.0.0-beta.1 Changelog
Resource Management - HDInsight 1.0.0-beta.1 Changelog
Resource Management - Hybrid Connectivity 1.0.0-beta.1 Changelog
Resource Management - IoT Hub 1.0.0-beta.1 Changelog
Resource Management - IotCentral 1.0.0-beta.2 Changelog
Resource Management - Key Vault 1.0.0 Changelog
Resource Management - Logic 1.0.0-beta.1 Changelog
Resource Management - Machine Learning 1.0.0-beta.2 Changelog
Resource Management - Managed Service Identity 1.0.0 Changelog
Resource Management - Media 1.0.0-beta.1 Changelog
Resource Management - Migrate 1.0.0-beta.1 Changelog
Resource Management - MySql 1.0.0-beta.1 Changelog
Resource Management - Network 1.0.0 Changelog
Resource Management - Network Function 1.0.0-beta.1 Changelog
Resource Management - Notification Hubs 1.0.0-beta.1 Changelog
Resource Management - PostgreSql 1.0.0-beta.1 Changelog
Resource Management - Redis 1.0.0-beta.1 Changelog
Resource Management - Redis Enterprise Cache 1.0.0-beta.1 Changelog
Resource Management - Reservations 1.0.0-beta.1 Changelog
Resource Management - Resources 1.2.0 Changelog
Resource Management - Resources 1.3.0 Changelog
Resource Management - Service Bus 1.0.0 Changelog
Resource Management - Service Linker 1.0.0 Changelog
Resource Management - ServiceFabric 1.0.0-beta.1 Changelog
Resource Management - Sql 1.0.0 Changelog
Resource Management - Sql Virtual Machine 1.0.0-beta.1 Changelog
Resource Management - Storage 1.0.0-beta.11 Changelog
Resource Management - Storage Pool 1.0.0-beta.4 Changelog
Resource Management - Stream Analytics 1.0.0-beta.1 Changelog
Resource Management - Web PubSub 1.0.0 Changelog
Service Bus 7.9.0 Changelog
Features Added
- Stable release of
ServiceBusRuleManager
. EntityPath
andFullyQualifiedNamespace
are now included on the various processor event args.
Service Bus 7.10.0 Changelog
Features Added
- Added the ability to set the a custom Identifier on the various client options types.
- The processor Identifier will now be included in the underlying receiver logs when using the
ServiceBusProcessor
orServiceBusSessionProcessor
. - Added the ability to set a custom endpoint that will be used when connecting to the service, via the
ServiceBusClientOptions.CustomEndpointAddress
property. - Added the
ReleaseSession
andRenewSessionLockAsync
methods to theProcessSessionEventArgs
class to allow the user to manage the session in theSessionInitializingAsync
and theSessionClosingAsync
event handlers.
Bugs Fixed
- Fixed issue where the AMQP footer would not be populated on received messages.
- Fixed issue where the client timeout was not respected when establishing the AMQP connection and the AMQP session.
- Fixed issue where closing the rule manager link could result in the AMQP session being closed even when
EnableCrossEntityTransactions
is set totrue
in theServiceBusClientOptions
.
Text Analytics 5.2.0-beta.4 Changelog
Breaking Changes
- Merged
MultiCategoryClassifyResult
andSingleCategoryClassifyResult
intoClassifyDocumentResult
. - Removed Extractive Text Summarization and related models. To access this beta feature, install the 5.2.0-beta.3 version of the client library.
- Removed Extractive Text Summarization, Multi Label Classification, and Single Label Classification from legacy client library.
- Removed
HealthcareTaskParameters.FhirVersion
andAnalyzeHealthcareEntitiesResult.FhirBundle
. To access this beta feature, install the 5.2.0-beta.3 version of the client library. - Renamed
LabelClassifyResult.Classifications
toLabelClassifyResult.ClassificationCategories
. - Renamed
MultiCategoryClassifyAction
toMultiLabelClassifyAction
. - Renamed
MultiCategoryClassifyActionResult
toMultiLabelClassifyActionResult
. - Renamed
MultiCategoryClassifyResult
toClassifyDocumentResult
. - Renamed
MultiCategoryClassifyResultCollection
toClassifyDocumentResultCollection
. - Renamed
SingleCategoryClassifyAction
toSingleLabelClassifyAction
. - Renamed
SingleCategoryClassifyActionResult
toSingleLabelClassifyActionResult
. - Renamed
SingleCategoryClassifyResult
toClassifyDocumentResult
. - Renamed
SingleCategoryClassifyResultCollection
toClassifyDocumentResultCollection
.
Features Added
- Added
AnalyzeActionsOperation.Cancel
andCancelAsync
to cancel a batch of actions. - Added
AnalyzeActionsResult.AnalyzeHealthcareEntitiesResults
to get healthcare entities from a batch of actions. - Added
TextAnalyticsActions.AnalyzeHealthcareEntitiesActions
to analyze healthcare entities in a batch of actions. - Added
TextAnalyticsClient.StartRecognizeCustomEntities
andStartRecognizeCustomEntitiesAsync
to recognize custom entities in a collection of documents. - Added
TextAnalyticsClient.StartSingleLabelClassify
andStartSingleLabelClassifyAsync
to classify documents with a single label. - Added
TextAnalyticsClient.StartMultiLabelClassify
andStartMultiLabelClassifyAsync
to classify documents with multiple labels.
Web PubSub 1.1.0-beta.1 Changelog
Bugs Fixed
- Fix the issue that when
expiresAfter
is less than 1 minute it requests a token with 0 ttl
WebJobs Extensions - Event Hubs 5.1.2 Changelog
Bugs Fixed
- Fixed a bug in the runtime scale controller that could result in a null reference exception when encountering a null checkpoint. Also, correct the assumption that the beginning sequence number for a partition is always 0.
WebJobs Extensions - Service Bus 5.6.0 Changelog
Features Added
- Added ability to register a callback for ` SessionInitializingAsync
and
SessionClosingAsyncto the
ServiceBusOptions`. (A community contribution, courtesy of danielmarbach)
Bugs Fixed
SessionIdleTimeout
now will be applied for batch functions in addition to single-message functions.
WebJobs Extensions - Service Bus 5.7.0 Changelog
Features Added
- Added distributed tracing span when for functions that process a batch of messages.
Bugs Fixed
- Fixed issue related to function apps that are bound to multiple namespaces using the same entity names, which caused messages to not be processed from the second namespace.
Latest Releases
View all the latest versions of .NET packages here.
Installation Instructions
To install any of our packages, please search for them via Manage NuGet Packages...
in Visual Studio (with Include prerelease
checked) or copy these commands into your terminal:
$> dotnet add package Azure.AI.FormRecognizer --version 4.0.0-beta.5
$> dotnet add package Azure.AI.Language.QuestionAnswering --version 1.1.0-beta.2
$> dotnet add package Azure.AI.TextAnalytics --version 5.2.0-beta.4
$> dotnet add package Azure.Communication.Identity --version 1.1.0
$> dotnet add package Azure.Communication.Rooms --version 1.0.0-beta.1
$> dotnet add package Azure.DigitalTwins.Core --version 1.4.0
$> dotnet add package Azure.Identity --version 1.6.1
$> dotnet add package Azure.Identity --version 1.7.0-beta.1
$> dotnet add package Azure.Identity.BrokeredAuthentication --version 1.0.0-beta.3
$> dotnet add package Azure.IoT.DeviceUpdate --version 1.0.0-beta.4
$> dotnet add package Azure.Messaging.EventGrid --version 4.11.0
$> dotnet add package Azure.Messaging.EventHubs --version 5.7.2
$> dotnet add package Azure.Messaging.EventHubs.Processor --version 5.7.2
$> dotnet add package Azure.Messaging.ServiceBus --version 7.9.0
$> dotnet add package Azure.Messaging.ServiceBus --version 7.10.0
$> dotnet add package Azure.Messaging.WebPubSub --version 1.1.0-beta.1
$> dotnet add package Azure.MixedReality.Authentication --version 1.1.0
$> dotnet add package Azure.MixedReality.ObjectAnchors.Conversion --version 0.3.0-beta.4
$> dotnet add package Azure.ResourceManager --version 1.2.0
$> dotnet add package Azure.ResourceManager --version 1.2.1
$> dotnet add package Azure.ResourceManager --version 1.3.0
$> dotnet add package Azure.ResourceManager.AlertsManagement --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.ApiManagement --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.AppConfiguration --version 1.0.0-beta.5
$> dotnet add package Azure.ResourceManager.AppContainers --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.AppService --version 1.0.0-beta.3
$> dotnet add package Azure.ResourceManager.ArcScVmm --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.Authorization --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.Batch --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.Cdn --version 1.0.0
$> dotnet add package Azure.ResourceManager.CognitiveServices --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.Communication --version 1.1.0-beta.5
$> dotnet add package Azure.ResourceManager.Compute --version 1.0.0
$> dotnet add package Azure.ResourceManager.ConfidentialLedger --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.ConnectedVMwarevSphere --version 1.0.0-beta.5
$> dotnet add package Azure.ResourceManager.ContainerInstance --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.ContainerRegistry --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.ContainerRegistry --version 1.0.0
$> dotnet add package Azure.ResourceManager.ContainerService --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.CosmosDB --version 1.0.0
$> dotnet add package Azure.ResourceManager.DataFactory --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.DeviceUpdate --version 1.0.0-beta.6
$> dotnet add package Azure.ResourceManager.Dns --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.Dynatrace --version 1.0.0-beta.2
$> dotnet add package Azure.ResourceManager.EdgeOrder --version 1.0.0-beta.4
$> dotnet add package Azure.ResourceManager.EventHubs --version 1.0.0
$> dotnet add package Azure.ResourceManager.ExtendedLocations --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.FluidRelay --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.Grafana --version 1.0.0-beta.2
$> dotnet add package Azure.ResourceManager.GuestConfiguration --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.HDInsight --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.Hci --version 1.0.0-beta.5
$> dotnet add package Azure.ResourceManager.HybridConnectivity --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.IotCentral --version 1.0.0-beta.2
$> dotnet add package Azure.ResourceManager.IotHub --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.KeyVault --version 1.0.0
$> dotnet add package Azure.ResourceManager.Logic --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.MachineLearning --version 1.0.0-beta.2
$> dotnet add package Azure.ResourceManager.ManagedServiceIdentities --version 1.0.0
$> dotnet add package Azure.ResourceManager.Media --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.Migrate --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.MySql --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.Network --version 1.0.0
$> dotnet add package Azure.ResourceManager.NetworkFunction --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.NotificationHubs --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.PostgreSql --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.Redis --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.RedisEnterpriseCache --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.Relay --version 1.0.0-beta.2
$> dotnet add package Azure.ResourceManager.Reservations --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.Resources --version 1.2.0
$> dotnet add package Azure.ResourceManager.Resources --version 1.3.0
$> dotnet add package Azure.ResourceManager.ServiceBus --version 1.0.0
$> dotnet add package Azure.ResourceManager.ServiceFabric --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.ServiceLinker --version 1.0.0
$> dotnet add package Azure.ResourceManager.Sql --version 1.0.0
$> dotnet add package Azure.ResourceManager.SqlVirtualMachine --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.Storage --version 1.0.0-beta.11
$> dotnet add package Azure.ResourceManager.StoragePool --version 1.0.0-beta.4
$> dotnet add package Azure.ResourceManager.StreamAnalytics --version 1.0.0-beta.1
$> dotnet add package Azure.ResourceManager.WebPubSub --version 1.0.0
$> dotnet add package Azure.Search.Documents --version 11.4.0-beta.9
$> dotnet add package Azure.Security.ConfidentialLedger --version 1.0.0
$> dotnet add package Azure.Security.ConfidentialLedger --version 1.1.0-beta.1
$> dotnet add package Microsoft.Azure.WebJobs.Extensions.EventHubs --version 5.1.2
$> dotnet add package Microsoft.Azure.WebJobs.Extensions.ServiceBus --version 5.6.0
$> dotnet add package Microsoft.Azure.WebJobs.Extensions.ServiceBus --version 5.7.0
$> dotnet add package Microsoft.Extensions.Azure --version 1.3.0
$> dotnet add package Microsoft.Extensions.Azure --version 1.4.0
Feedback
If you have a bug or feature request for one of the libraries, please file an issue in our repo.