Skip to content

Commit 513a29a

Browse files
CopilotBillWagner
andcommitted
Initial analysis of Azure Blob Storage F# documentation
Co-authored-by: BillWagner <[email protected]>
1 parent bbd48c1 commit 513a29a

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#r "nuget: Azure.Storage.Blobs"
2+
open Azure.Storage.Blobs
3+
open Azure.Storage.Blobs.Models
4+
open Azure.Storage.Blobs.Specialized
5+
6+
// Test if the APIs work
7+
let testConnection = "DefaultEndpointsProtocol=https;AccountName=test;AccountKey=test;EndpointSuffix=core.windows.net"
8+
let container = BlobContainerClient(testConnection, "test")
9+
printfn "Container client created successfully using v12 SDK"
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net8.0</TargetFramework>
5+
<OutputType>Exe</OutputType>
6+
</PropertyGroup>
7+
8+
<ItemGroup>
9+
<PackageReference Include="Azure.Storage.Blobs" Version="12.25.0" />
10+
</ItemGroup>
11+
12+
</Project>

0 commit comments

Comments
 (0)