Skip to content

Commit ea9a847

Browse files
author
Doug Erickson
committed
0 parents  commit ea9a847

8 files changed

+529
-0
lines changed

.gitignore

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

.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

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"need_generate_pdf": false,
3+
"need_generate_intellisense": false,
4+
"docsets_to_publish": [
5+
{
6+
"docset_name": "team-services",
7+
"build_source_folder": "docs",
8+
"build_output_subfolder": "team-services",
9+
"locale": "en-us",
10+
"monikers": [],
11+
"open_to_public_contributors": false,
12+
"type_mapping": {
13+
"Conceptual": "Content",
14+
"ManagedReference": "Content",
15+
"RestApi": "Content"
16+
},
17+
"build_entry_point": "docs",
18+
"template_folder": "_themes",
19+
"version": 0
20+
}
21+
],
22+
"notification_subscribers": [
23+
24+
25+
],
26+
"branches_to_filter": [],
27+
"skip_source_output_uploading": false,
28+
"need_preview_pull_request": true,
29+
"dependent_repositories": [
30+
{
31+
"path_to_root": "_themes",
32+
"url": "https://github.com/Microsoft/templates.docs.msft",
33+
"branch": "master",
34+
"branch_mapping": {}
35+
}
36+
],
37+
"need_generate_pdf_url_template": false
38+
}

LICENSE

+395
Large diffs are not rendered by default.

LICENSE-CODE

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
The MIT License (MIT)
2+
Copyright (c) Microsoft Corporation
3+
4+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
5+
associated documentation files (the "Software"), to deal in the Software without restriction,
6+
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
7+
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
8+
subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all copies or substantial
11+
portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
14+
NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
15+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
16+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
17+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## Microsoft Open Source Code of Conduct
2+
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
3+
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [[email protected]](mailto:[email protected]) with any additional questions or comments.

ThirdPartyNotices

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
##Legal Notices
2+
Microsoft and any contributors grant you a license to the Microsoft documentation and other content
3+
in this repository under the [Creative Commons Attribution 4.0 International Public License](https://creativecommons.org/licenses/by/4.0/legalcode),
4+
see the [LICENSE](LICENSE) file, and grant you a license to any code in the repository under the [MIT License](https://opensource.org/licenses/MIT), see the
5+
[LICENSE-CODE](LICENSE-CODE) file.
6+
7+
Microsoft, Windows, Microsoft Azure and/or other Microsoft products and services referenced in the documentation
8+
may be either trademarks or registered trademarks of Microsoft in the United States and/or other countries.
9+
The licenses for this project do not grant you rights to use any Microsoft names, logos, or trademarks.
10+
Microsoft's general trademark guidelines can be found at http://go.microsoft.com/fwlink/?LinkID=254653.
11+
12+
Privacy information can be found at https://privacy.microsoft.com/en-us/
13+
14+
Microsoft and any contributors reserve all others rights, whether under their respective copyrights, patents,
15+
or trademarks, whether by implication, estoppel or otherwise.

docs/docfx.json

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"build": {
3+
"content": [
4+
{
5+
"files": [
6+
"**/*.md"
7+
],
8+
"exclude": [
9+
"**/obj/**",
10+
"**/includes/**",
11+
"README.md",
12+
"LICENSE",
13+
"LICENSE-CODE",
14+
"ThirdPartyNotices"
15+
]
16+
}
17+
],
18+
"resource": [
19+
{
20+
"files": [
21+
"**/*.png",
22+
"**/*.jpg"
23+
],
24+
"exclude": [
25+
"**/obj/**",
26+
"**/includes/**"
27+
]
28+
}
29+
],
30+
"overwrite": [],
31+
"externalReference": [],
32+
"globalMetadata": {},
33+
"fileMetadata": {},
34+
"template": [],
35+
"dest": "team-services"
36+
}
37+
}

0 commit comments

Comments
 (0)