Skip to content

Commit 7365afb

Browse files
Merge pull request #42642 from dotnet/main
Merge main into live
2 parents bf5eab0 + 5c2f79c commit 7365afb

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

docs/architecture/maui/mvvm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ The programmatic construction and assignment of the view model within the view's
120120

121121
## Updating views in response to changes in the underlying view model or model
122122

123-
All view model and model classes that are accessible to a view should implement the [<xref:System.ComponentModel.INotifyPropertyChanged> interface. Implementing this interface in a view model or model class allows the class to provide change notifications to any data-bound controls in the view when the underlying property value changes.
123+
All view model and model classes that are accessible to a view should implement the <xref:System.ComponentModel.INotifyPropertyChanged> interface. Implementing this interface in a view model or model class allows the class to provide change notifications to any data-bound controls in the view when the underlying property value changes.
124124

125125
App's should be architected for the correct use of property change notification, by meeting the following requirements:
126126

docs/fsharp/using-fsharp-on-azure/blob-storage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Get started with Azure Blob Storage using F#
33
description: Store unstructured data in the cloud with Azure Blob Storage.
44
author: sylvanc
5-
ms.date: 08/26/2021
5+
ms.date: 09/17/2024
66
ms.custom: "devx-track-fsharp"
77
---
88
# Get started with Azure Blob Storage using F\#
@@ -11,7 +11,7 @@ Azure Blob Storage is a service that stores unstructured data in the cloud as ob
1111

1212
This article shows you how to perform common tasks using Blob storage. The samples are written using F# using the Azure Storage Client Library for .NET. The tasks covered include how to upload, list, download, and delete blobs.
1313

14-
For a conceptual overview of blob storage, see [the .NET guide for blob storage](/azure/storage/blobs/storage-quickstart-blobs-dotnet).
14+
For a conceptual overview of blob storage, see [the .NET guide for blob storage](/azure/storage/blobs/storage-quickstart-blobs-dotnet). For ease, these tutorials use [connection strings](/azure/storage/storage-configure-connection-string) to authenticate with Azure. For optimal security, you should use Microsoft Entra ID with [managed identities](/entra/identity/managed-identities-azure-resources/).
1515

1616
## Prerequisites
1717

docs/fsharp/using-fsharp-on-azure/file-storage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
title: Get started with Azure Files using F#
33
description: Store file data in the cloud with Azure Files and mount your cloud file share from an Azure virtual machine (VM) or from an on-premises application running Windows.
44
author: sylvanc
5-
ms.date: 08/26/2021
5+
ms.date: 09/17/2024
66
ms.custom: "devx-track-fsharp"
77
---
88
# Get started with Azure Files using F\#
99

1010
Azure Files is a service that offers file shares in the cloud using the standard [Server Message Block (SMB) protocol](/windows/win32/fileio/microsoft-smb-protocol-and-cifs-protocol-overview). Both SMB 2.1 and SMB 3.0 are supported. With Azure Files, you can migrate legacy applications that rely on file shares to Azure quickly and without costly rewrites. Applications running in Azure virtual machines or cloud services or from on-premises clients can mount a file share in the cloud, just as a desktop application mounts a typical SMB share. Any number of application components can then mount and access the file storage share simultaneously.
1111

12-
For a conceptual overview of file storage, see [the .NET guide for file storage](/azure/storage/storage-dotnet-how-to-use-files).
12+
For a conceptual overview of file storage, see [the .NET guide for file storage](/azure/storage/storage-dotnet-how-to-use-files). For ease, these tutorials use [connection strings](/azure/storage/storage-configure-connection-string) to authenticate with Azure. For optimal security, you should use Microsoft Entra ID with [managed identities](/entra/identity/managed-identities-azure-resources/).
1313

1414
## Prerequisites
1515

docs/fsharp/using-fsharp-on-azure/queue-storage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Get started with Azure Queue Storage using F#
33
description: Azure Queues provide reliable, asynchronous messaging between application components. Cloud messaging enables your application components to scale independently.
44
author: sylvanc
5-
ms.date: 08/26/2021
5+
ms.date: 09/17/2024
66
ms.custom: "devx-track-fsharp"
77
---
88
# Get started with Azure Queue Storage using F\#
@@ -13,7 +13,7 @@ Azure Queue Storage provides cloud messaging between application components. In
1313

1414
This tutorial shows how to write F# code for some common tasks using Azure Queue Storage. Tasks covered include creating and deleting queues and adding, reading, and deleting queue messages.
1515

16-
For a conceptual overview of queue storage, see [the .NET guide for queue storage](/azure/storage/queues/storage-quickstart-queues-dotnet).
16+
For a conceptual overview of queue storage, see [the .NET guide for queue storage](/azure/storage/queues/storage-quickstart-queues-dotnet). For ease, these tutorials use [connection strings](/azure/storage/storage-configure-connection-string) to authenticate with Azure. For optimal security, you should use Microsoft Entra ID with [managed identities](/entra/identity/managed-identities-azure-resources/).
1717

1818
## Prerequisites
1919

docs/fsharp/using-fsharp-on-azure/table-storage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Get started with Azure Table Storage using F#
33
description: Store structured data in the cloud using Azure Table Storage or Azure Cosmos DB.
44
author: sylvanc
5-
ms.date: 07/28/2022
5+
ms.date: 09/17/2024
66
ms.custom: "devx-track-fsharp"
77
---
88
# Get started with Azure Table Storage and the Azure Cosmos DB Table api using F\#
@@ -21,7 +21,7 @@ Azure Cosmos DB provides the Table API for applications that are written for Azu
2121

2222
Applications written for Azure Table Storage can migrate to Azure Cosmos DB by using the Table API with no code changes and take advantage of premium capabilities. The Table API has client SDKs available for [.NET](https://www.nuget.org/packages/Azure.Data.Tables/), [Java](https://mvnrepository.com/artifact/com.azure/azure-data-tables), [Python](https://pypi.org/project/azure-data-tables/), and [Node.js](https://www.npmjs.com/package/@azure/data-tables).
2323

24-
For more information, see [Introduction to Azure Cosmos DB Table API](/azure/cosmos-db/table-introduction).
24+
For more information, see [Introduction to Azure Cosmos DB Table API](/azure/cosmos-db/table-introduction). For ease, these tutorials use [connection strings](/azure/storage/storage-configure-connection-string) to authenticate with Azure. For optimal security, you should use Microsoft Entra ID with [managed identities](/entra/identity/managed-identities-azure-resources/).
2525

2626
## About this tutorial
2727

samples/snippets/fsharp/azure/table-storage.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ open Azure.Data.Tables // Namespace for Table storage types
1212
// Get your connection string.
1313
//
1414
// <connectionString>
15-
let storageConnString = "UseDevelopmentStorage=true" // fill this in from your storage account
15+
let storageConnString = "..." // fill this in from your storage account
1616
// </connectionString>
1717

1818
//

0 commit comments

Comments
 (0)