File tree Expand file tree Collapse file tree 4 files changed +22
-2
lines changed Expand file tree Collapse file tree 4 files changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -404,4 +404,8 @@ FodyWeavers.xsd
404
404
* .msp
405
405
406
406
# JetBrains Rider
407
- * .sln.iml
407
+ * .sln.iml
408
+
409
+ # Missing external url docs report Folder
410
+
411
+ missingexternaldocsurl /
Original file line number Diff line number Diff line change @@ -60,14 +60,22 @@ extends:
60
60
outputs :
61
61
- output : pipelineArtifact
62
62
displayName : ' Publish Examples to be reviewed as artifact'
63
- targetPath : $(Build.SourcesDirectory)/ missingexternaldocsurl
63
+ targetPath : ' microsoftgraph-docs-powershell\ missingexternaldocsurl'
64
64
artifactName : ' MissingExternalDocs'
65
65
publishLocation : ' Container'
66
66
steps :
67
67
- template : azure-pipelines/update-template.yml@self
68
68
parameters :
69
69
projectFileName : $(projectFileName)
70
70
testType : ' Execution'
71
+ - task : PowerShell@2
72
+ displayName : ' Create missing external docs folder'
73
+ continueOnError : false
74
+ inputs :
75
+ targetType : ' filePath'
76
+ pwsh : true
77
+ filePath : microsoftgraph-docs-powershell\scripts\CreateExternalDocsFolder.ps1
78
+
71
79
# - task: PowerShell@2
72
80
# displayName: 'Generate markdown files from PowerShell help files'
73
81
# continueOnError: false
Original file line number Diff line number Diff line change
1
+ # Copyright (c) Microsoft Corporation. All rights reserved.
2
+ # Licensed under the MIT License.
3
+ Param (
4
+ [string ] $MissingMsProdHeaderPath = (Join-Path $PSScriptRoot " ../missingexternaldocsurl" )
5
+ )
6
+ if (-not (Test-Path - PathType Container $MissingMsProdHeaderPath )) {
7
+ New-Item - ItemType Directory - Force - Path $MissingMsProdHeaderPath
8
+ }
You can’t perform that action at this time.
0 commit comments