Skip to content

Commit 172693a

Browse files
authored
Add op related config & Update moniker mapping file (Azure#112)
1 parent ebad98e commit 172693a

8 files changed

+702
-8
lines changed

.gitignore

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
log/
2+
obj/
3+
_site/
4+
.optemp/
5+
_themes*/
6+
7+
_tmp_
8+
9+
.openpublishing.buildcore.ps1
10+
_dependentPackages/
11+
_themes/
12+
.optemp/

.openpublishing.build.ps1

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
param(
2+
[string]$buildCorePowershellUrl = "https://opbuildstorageprod.blob.core.windows.net/opps1container/.openpublishing.buildcore.ps1",
3+
[string]$parameters
4+
)
5+
# Main
6+
$errorActionPreference = 'Stop'
7+
8+
# Step-1: Download buildcore script to local
9+
echo "download build core script to local with source url: $buildCorePowershellUrl"
10+
$repositoryRoot = Split-Path -Parent $MyInvocation.MyCommand.Definition
11+
$buildCorePowershellDestination = "$repositoryRoot\.openpublishing.buildcore.ps1"
12+
Invoke-WebRequest $buildCorePowershellUrl -OutFile "$buildCorePowershellDestination"
13+
14+
# Step-2: Run build core
15+
echo "run build core script with parameters: $parameters"
16+
& "$buildCorePowershellDestination" "$parameters"
17+
exit $LASTEXITCODE

.openpublishing.publish.config.json

+90
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
{
2+
"build_entry_point": "docs",
3+
"need_generate_pdf": false,
4+
"need_generate_intellisense": false,
5+
"docsets_to_publish": [
6+
{
7+
"docset_name": "azuread-with-plugin",
8+
"build_source_folder": ".",
9+
"build_output_subfolder": "azuread-with-plugin",
10+
"locale": "en-us",
11+
"monikers": [],
12+
"open_to_public_contributors": true,
13+
"type_mapping": {
14+
"Conceptual": "Content",
15+
"ManagedReference": "Content",
16+
"RestApi": "Content",
17+
"AzurePSModulePage": "Content"
18+
},
19+
"build_entry_point": "docs",
20+
"template_folder": "_themes",
21+
"version": 0,
22+
"customized_template_paths": [
23+
"_dependentPackages/azurecli.plugins/azurecli"
24+
],
25+
"customized_tasks": {
26+
"docset_prebuild": [
27+
"_dependentPackages/Microsoft.OpenPublishing.AzurePSPlugin/tools/Restructure.ps1",
28+
"_dependentPackages/CommonPlugins/tools/JoinTOC.ps1"
29+
]
30+
}
31+
}
32+
],
33+
"notification_subscribers": [],
34+
"branches_to_filter": [],
35+
"skip_source_output_uploading": false,
36+
"dependent_repositories": [
37+
{
38+
"path_to_root": "_themes",
39+
"url": "https://github.com/Microsoft/templates.docs.msft",
40+
"branch": "master",
41+
"branch_mapping": {}
42+
}
43+
],
44+
"dependent_packages": [
45+
{
46+
"path_to_root": "_dependentPackages/azurecli.plugins",
47+
"id": "opbuild.templates.azurecli",
48+
"version": "latest",
49+
"nuget_feed": "https://www.myget.org/F/op/api/v2"
50+
},
51+
{
52+
"id": "Microsoft.OpenPublishing.AzurePSPlugin",
53+
"path_to_root": "_dependentPackages/Microsoft.OpenPublishing.AzurePSPlugin",
54+
"version": "latest",
55+
"nuget_feed": "https://www.myget.org/F/op-dev/api/v2"
56+
},
57+
{
58+
"id": "Microsoft.OpenPublishing.CommonPlugins",
59+
"nuget_feed": "https://www.myget.org/F/op/api/v2",
60+
"path_to_root": "_dependentPackages/CommonPlugins",
61+
"target_framework": "net45",
62+
"version": "latest"
63+
}
64+
],
65+
"monikerPath": [
66+
"Azure AD Cmdlets/mapping/monikerMapping.json"
67+
],
68+
"JoinTOCPlugin": [
69+
{
70+
"TopLevelTOC": "azureadps-1.0/toc.yml",
71+
"ConceptualTOC": "azureadps-1.0/docs-conceptual/toc.yml",
72+
"ReferenceTOCUrl": "/powershell-with-plugin/module/active-directory/toc.json?view=azureadps-1.0",
73+
"ConceptualTOCUrl": "/powershell-with-plugin/azure/active-directory/toc.json?view=azureadps-1.0"
74+
},
75+
{
76+
"TopLevelTOC": "azureadps-2.0/toc.yml",
77+
"ConceptualTOC": "azureadps-2.0/docs-conceptual/toc.yml",
78+
"ReferenceTOCUrl": "/powershell-with-plugin/module/active-directory/toc.json?view=azureadps-2.0",
79+
"ConceptualTOCUrl": "/powershell-with-plugin/azure/active-directory/toc.json?view=azureadps-2.0"
80+
},
81+
{
82+
"TopLevelTOC": "azureadps-2.0-preview/toc.yml",
83+
"ConceptualTOC": "azureadps-2.0-preview/docs-conceptual/toc.yml",
84+
"ReferenceTOCUrl": "/powershell-with-plugin/module/active-directory/toc.json?view=azureadps-2.0-preview",
85+
"ConceptualTOCUrl": "/powershell-with-plugin/azure/active-directory/toc.json?view=azureadps-2.0-preview"
86+
}
87+
],
88+
"need_generate_pdf_url_template": false,
89+
"dest": "_site"
90+
}
+23-8
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,41 @@
11
{
22
"azureadps-2.0": {
3-
"azure-docs-powershell-azuread/Azure AD Cmdlets": {
3+
"serviceMap": "Azure AD Cmdlets/mapping/groupMapping-2.0.json",
4+
"packageRoot": "Azure AD Cmdlets",
5+
"modules": {
6+
"docs-conceptual": {
7+
"_type": "conceptual"
8+
},
49
"AzureAD": {
510
"_displayName": "AzureAD",
6-
"_version": "2"
11+
"_version": "v2"
712
}
813
}
914
},
1015
"azureadps-2.0-preview": {
11-
"azure-docs-powershell-azuread/Azure AD Cmdlets": {
16+
"serviceMap": "Azure AD Cmdlets/mapping/groupMapping-2.0-preview.json",
17+
"packageRoot": "Azure AD Cmdlets",
18+
"modules": {
19+
"docs-conceptual": {
20+
"_type": "conceptual"
21+
},
1222
"AzureAD": {
1323
"_displayName": "AzureADpreview",
14-
"_version": "2preview"
24+
"_version": "v2preview"
1525
}
1626
}
17-
},
27+
},
1828
"azureadps-1.0": {
19-
"azure-docs-powershell-azuread/Azure AD Cmdlets": {
29+
"serviceMap": "Azure AD Cmdlets/mapping/groupMapping-1.0.json",
30+
"packageRoot": "Azure AD Cmdlets",
31+
"modules": {
32+
"docs-conceptual": {
33+
"_type": "conceptual"
34+
},
2035
"MSOnline": {
2136
"_displayName": "MSOnline",
22-
"_version": "1"
37+
"_version": "v1"
2338
}
2439
}
2540
}
26-
}
41+
}

0 commit comments

Comments
 (0)