Skip to content

Commit eccca4a

Browse files
committed
Update Azure Storage namespaces
1 parent c1ba91d commit eccca4a

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

snippets/fsharp/azure/blob-storage.fsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
open System
22
open System.IO
33
open Microsoft.Azure // Namespace for CloudConfigurationManager
4-
open Microsoft.WindowsAzure.Storage // Namespace for CloudStorageAccount
5-
open Microsoft.WindowsAzure.Storage.Blob // Namespace for Blob storage types
4+
open Microsoft.Azure.Storage // Namespace for CloudStorageAccount
5+
open Microsoft.Azure.Storage.Blob // Namespace for Blob storage types
66

77
//
88
// Get your connection string.

snippets/fsharp/azure/file-storage.fsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
open System
22
open System.IO
33
open Microsoft.Azure // Namespace for CloudConfigurationManager
4-
open Microsoft.WindowsAzure.Storage // Namespace for CloudStorageAccount
5-
open Microsoft.WindowsAzure.Storage.File // Namespace for File storage types
4+
open Microsoft.Azure.Storage // Namespace for CloudStorageAccount
5+
open Microsoft.Azure.Storage.File // Namespace for File storage types
66

77
//
88
// Get your connection string.
@@ -123,8 +123,8 @@ destBlob.StartCopy(sasUri2)
123123
// Troubleshooting File storage using metrics.
124124
//
125125

126-
open Microsoft.WindowsAzure.Storage.File.Protocol
127-
open Microsoft.WindowsAzure.Storage.Shared.Protocol
126+
open Microsoft.Azure.Storage.File.Protocol
127+
open Microsoft.Azure.Storage.Shared.Protocol
128128

129129
let props =
130130
FileServiceProperties(

snippets/fsharp/azure/queue-storage.fsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
open Microsoft.Azure // Namespace for CloudConfigurationManager
2-
open Microsoft.WindowsAzure.Storage // Namespace for CloudStorageAccount
3-
open Microsoft.WindowsAzure.Storage.Queue // Namespace for Queue storage types
2+
open Microsoft.Azure.Storage // Namespace for CloudStorageAccount
3+
open Microsoft.Azure.Storage.Queue // Namespace for Queue storage types
44

55
//
66
// Get your connection string.

snippets/fsharp/azure/table-storage.fsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
open System
22
open System.IO
33
open Microsoft.Azure // Namespace for CloudConfigurationManager
4-
open Microsoft.WindowsAzure.Storage // Namespace for CloudStorageAccount
5-
open Microsoft.WindowsAzure.Storage.Table // Namespace for Table storage types
4+
open Microsoft.Azure.Storage // Namespace for CloudStorageAccount
5+
open Microsoft.Azure.Storage.Table // Namespace for Table storage types
66

77
//
88
// Get your connection string.

0 commit comments

Comments
 (0)