Skip to content

Commit a52c3dc

Browse files
committed
Initial
0 parents  commit a52c3dc

File tree

7,953 files changed

+678828
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

7,953 files changed

+678828
-0
lines changed

.gitattributes

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
###############################################################################
2+
# Set default behavior to automatically normalize line endings.
3+
###############################################################################
4+
* text=auto
5+
6+
###############################################################################
7+
# Set default behavior for command prompt diff.
8+
#
9+
# This is need for earlier builds of msysgit that does not have it on by
10+
# default for csharp files.
11+
# Note: This is only used by command line
12+
###############################################################################
13+
#*.cs diff=csharp
14+
15+
###############################################################################
16+
# Set the merge driver for project and solution files
17+
#
18+
# Merging from the command prompt will add diff markers to the files if there
19+
# are conflicts (Merging from VS is not affected by the settings below, in VS
20+
# the diff markers are never inserted). Diff markers may cause the following
21+
# file extensions to fail to load in VS. An alternative would be to treat
22+
# these files as binary and thus will always conflict and require user
23+
# intervention with every merge. To do so, just uncomment the entries below
24+
###############################################################################
25+
#*.sln merge=binary
26+
#*.csproj merge=binary
27+
#*.vbproj merge=binary
28+
#*.vcxproj merge=binary
29+
#*.vcproj merge=binary
30+
#*.dbproj merge=binary
31+
#*.fsproj merge=binary
32+
#*.lsproj merge=binary
33+
#*.wixproj merge=binary
34+
#*.modelproj merge=binary
35+
#*.sqlproj merge=binary
36+
#*.wwaproj merge=binary
37+
38+
###############################################################################
39+
# behavior for image files
40+
#
41+
# image files are treated as binary by default.
42+
###############################################################################
43+
#*.jpg binary
44+
#*.png binary
45+
#*.gif binary
46+
47+
###############################################################################
48+
# diff behavior for common document formats
49+
#
50+
# Convert binary document formats to text before diffing them. This feature
51+
# is only available from the command line. Turn it on by uncommenting the
52+
# entries below.
53+
###############################################################################
54+
#*.doc diff=astextplain
55+
#*.DOC diff=astextplain
56+
#*.docx diff=astextplain
57+
#*.DOCX diff=astextplain
58+
#*.dot diff=astextplain
59+
#*.DOT diff=astextplain
60+
#*.pdf diff=astextplain
61+
#*.PDF diff=astextplain
62+
#*.rtf diff=astextplain
63+
#*.RTF diff=astextplain

.gitignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
log/
2+
xhtml/
3+
packages/
4+
obj/
5+
_site/
6+
Tools/NuGet/
7+
_site/
8+
.optemp/
9+
.vscode
10+
11+
.openpublishing.build.mdproj
12+
.openpublishing.buildcore.ps1
13+
packages.config
14+
*.tmp

.localization-config

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"locales": [ "ja-jp", "de-de", "fr-fr", "zh-cn", "zh-tw", "ko-kr", "es-es", "it-it", "ru-ru", "pt-br" ],
3+
"files": ["!/*.md", "**/**/*.md", "**/*.md"],
4+
"includeDependencies": false,
5+
"autoPush": true,
6+
"xliffVersion": "2.0",
7+
"useJavascriptMarkdownTransformer": true,
8+
"markdownTransformerOptions": {
9+
"lockBackslashEscapeChars": false,
10+
"linkifyHeaders": true
11+
}
12+
}

.openpublishing.build.ps1

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
$arguments = "-parameters:'$parameters'"
17+
Invoke-Expression "$buildCorePowershellDestination $arguments"
18+
exit $LASTEXITCODE

.openpublishing.publish.config.json

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
{
2+
"build_entry_point": "op",
3+
"need_generate_pdf": false,
4+
"need_generate_intellisense": false,
5+
"docsets_to_publish": [
6+
{
7+
"docset_name": "windows-apps",
8+
"build_source_folder": "windows-apps-src",
9+
"build_output_subfolder": "windows-apps-src",
10+
"locale": "en-us",
11+
"version": 0,
12+
"open_to_public_contributors": true,
13+
"type_mapping": {
14+
"Conceptual": "Content",
15+
"ManagedReference": "Content",
16+
"RestApi": "Content"
17+
},
18+
"build_entry_point": "op",
19+
"is_dynamic_rendering": false,
20+
"git_repository_url_open_to_public_contributors": "https://github.com/MicrosoftDocs/windows-uwp/",
21+
"git_repository_branch_open_to_public_contributors": "docs"
22+
},
23+
{
24+
"docset_name": "hub",
25+
"build_source_folder": "hub",
26+
"build_output_subfolder": "hub",
27+
"locale": "en-us",
28+
"version": 0,
29+
"open_to_public_contributors": false,
30+
"type_mapping": {
31+
"Conceptual": "Content",
32+
"ManagedReference": "Content",
33+
"RestApi": "Content"
34+
},
35+
"build_entry_point": "docs",
36+
"template_folder": "_themes",
37+
"is_dynamic_rendering": false
38+
}
39+
],
40+
"notification_subscribers": [
41+
42+
],
43+
"branches_to_filter": [
44+
""
45+
],
46+
"skip_source_output_uploading": false,
47+
"dependent_repositories": [
48+
{
49+
"path_to_root": "_themes",
50+
"url": "https://github.com/Microsoft/templates.docs.msft",
51+
"branch": "master",
52+
"branch_mapping": {}
53+
}
54+
],
55+
"need_generate_pdf_url_template": false
56+
}

.vscode/launch.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Launch Extension",
6+
"type": "extensionHost",
7+
"request": "launch",
8+
"runtimeExecutable": "${execPath}",
9+
"args": [
10+
"--extensionDevelopmentPath=${workspaceRoot}"
11+
],
12+
"stopOnEntry": false,
13+
"sourceMaps": true,
14+
"outDir": "out",
15+
"preLaunchTask": "npm"
16+
}
17+
]
18+
}

0 commit comments

Comments
 (0)