Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .azure-pipelines/generate-beta-rollup-module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
inputs:
ConnectedServiceName: 'microsoftgraph ESRP CodeSign DLL and NuGet'
FolderPath: $(MODULE_PATH)
Pattern: '$(MODULE_PREFIX).psd1, $(MODULE_PREFIX).*.psd1, $(MODULE_PREFIX).*.format.ps1xml, *.ps1'
Pattern: '$(MODULE_PREFIX).psm1, $(MODULE_PREFIX).*.format.ps1xml, *.ps1'
signConfigType: inlineSignParams
inlineOperation: |
[
Expand Down
2 changes: 1 addition & 1 deletion .azure-pipelines/generate-v1.0-rollup-module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
inputs:
ConnectedServiceName: 'microsoftgraph ESRP CodeSign DLL and NuGet'
FolderPath: $(MODULE_PATH)
Pattern: '$(MODULE_PREFIX).psd1, $(MODULE_PREFIX).*.psd1, $(MODULE_PREFIX).*.format.ps1xml, *.ps1'
Pattern: '$(MODULE_PREFIX).psm1, $(MODULE_PREFIX).*.format.ps1xml, *.ps1'
signConfigType: inlineSignParams
inlineOperation: |
[
Expand Down
3 changes: 1 addition & 2 deletions tools/DownloadOpenApiDoc.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,11 @@ Param(
[string] $GraphVersion
)

$OpenApiDocOutput = Join-Path -Path $OpenApiDocOutput -ChildPath $GraphVersion
if(-not (Test-Path $OpenApiDocOutput)) {
New-Item -Path $OpenApiDocOutput -Type Directory
}

$OpenApiBaseUrl = "https://graphslice.azurewebsites.net"
$OpenApiBaseUrl = "https://graphexplorerapi.azurewebsites.net"
$OpenApiServiceUrl = ("$OpenApiBaseUrl/`$openapi?tags={0}&title=$ModuleName&openapiversion=3&style=Powershell&graphVersion=$GraphVersion" -f $ModuleRegex)

Write-Host -ForegroundColor Green "Downloading OpenAPI doc for '$ModuleName' module: $OpenApiServiceUrl"
Expand Down