Skip to content

Commit 26b5131

Browse files
committed
Merge branch 'master' of https://github.com/MicrosoftDocs/visualstudio-docs-pr into mikejo-br14
2 parents e50a745 + e6fedf2 commit 26b5131

File tree

68 files changed

+1716
-1127
lines changed

Some content is hidden

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

68 files changed

+1716
-1127
lines changed

.openpublishing.publish.config.json

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,6 @@
11
{
22
"build_entry_point": "docs",
33
"docsets_to_publish": [
4-
{
5-
"docset_name": "connected-environment",
6-
"build_source_folder": "connected-environment",
7-
"build_output_subfolder": "connected-environment",
8-
"locale": "en-us",
9-
"monikers": [],
10-
"moniker_ranges": [],
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-
},
204
{
215
"docset_name": "docs",
226
"build_source_folder": "docs",

.openpublishing.redirection.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7076,6 +7076,11 @@
70767076
"source_path": "docs/reference/synchronized-settings-environment-options-dialog-box.md",
70777077
"redirect_url": "/visualstudio/ide/reference/accounts-environment-options-dialog-box",
70787078
"redirect_document_id": false
7079+
},
7080+
{
7081+
"source_path": "docs/extensibility/buildprojectonload-visual-studio-templates.md",
7082+
"redirect_url": "/visualstudio/extensibility/buildonload-visual-studio-templates",
7083+
"redirect_document_id": false
70797084
}
70807085
]
70817086
}

connected-environment/breadcrumb/toc.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

connected-environment/docfx.json

Lines changed: 0 additions & 51 deletions
This file was deleted.

docs/ai/media/Tensorflow_logo.png

-4.28 KB
Binary file not shown.

docs/ai/media/about/App_IDE.png

-198 KB
Binary file not shown.

docs/ai/media/about/TensorBoard.png

-189 KB
Binary file not shown.
-352 KB
Binary file not shown.
-168 KB
Binary file not shown.

docs/extensibility/appliesto-element-visual-studio-templates.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
title: "AppliesTo Element (Visual Studio Templates) | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "11/04/2016"
5-
ms.technology:
6-
- "vs-ide-general"
7-
ms.topic: "conceptual"
5+
ms.technology: vs-ide-general
6+
ms.topic: reference
87
ms.assetid: 8fb1334b-d78c-405f-98b4-786e9f6b58d7
98
author: "gregvanl"
109
ms.author: "gregvanl"

docs/extensibility/assembly-element-visual-studio-template-wizard-extension.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
title: "Assembly Element (Visual Studio Template Wizard Extension) | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "11/04/2016"
5-
ms.technology:
6-
- "vs-ide-general"
7-
ms.topic: "conceptual"
5+
ms.technology: vs-ide-general
6+
ms.topic: reference
87
f1_keywords:
98
- "http://schemas.microsoft.com/developer/vstemplate/2005#Assembly"
109
helpviewer_keywords:

docs/extensibility/assembly-element-visual-studio-templates.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
title: "Assembly Element (Visual Studio Templates) | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "11/04/2016"
5-
ms.technology:
6-
- "vs-ide-general"
7-
ms.topic: "conceptual"
5+
ms.technology: vs-ide-general
6+
ms.topic: reference
87
f1_keywords:
98
- "http://schemas.microsoft.com/developer/vstemplate/2005#Assembly"
109
helpviewer_keywords:
Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
---
2+
title: BuildOnLoad attribute and element (Visual Studio Templates)
3+
ms.date: "11/04/2016"
4+
ms.technology: vs-ide-general
5+
ms.topic: reference
6+
f1_keywords:
7+
- "http://schemas.microsoft.com/developer/vstemplate/2005#BuildOnLoad"
8+
helpviewer_keywords:
9+
- "BuildOnLoad attribute [Visual Studio Templates]"
10+
- "BuildOnLoad element [Visual Studio Templates]"
11+
ms.assetid: 950f5fc1-d041-4090-9a5c-60844768a4cc
12+
author: "gregvanl"
13+
ms.author: "gregvanl"
14+
manager: douge
15+
ms.workload:
16+
- "vssdk"
17+
---
18+
# BuildOnLoad attribute and element
19+
20+
Specifies whether to build the project immediately after it's created. **BuildOnLoad** is both an attribute and an element.
21+
22+
Element hierarchy:
23+
24+
```xml
25+
<VSTemplate>
26+
<TemplateData>
27+
<BuildOnLoad>
28+
```
29+
30+
## Element syntax
31+
32+
```xml
33+
<BuildOnLoad> true/false </BuildOnLoad>
34+
```
35+
36+
## Parent elements
37+
38+
|Element|Description|
39+
|-------------|-----------------|
40+
|[TemplateData](../extensibility/templatedata-element-visual-studio-templates.md)|Categorizes the template and defines how it displays in either the **New Project** or the **Add New Item** dialog box.|
41+
42+
## Text value
43+
44+
A text value is required for the **BuildOnLoad** element. The text must be either `true` or `false`, indicating whether to build the project immediately after it's created.
45+
46+
## Remarks
47+
48+
**BuildOnLoad** is an optional attribute. The default value is `false`.
49+
50+
## Example
51+
52+
The following example illustrates the metadata for a C# template when **BuildOnLoad** is used as an element:
53+
54+
```xml
55+
<VSTemplate Type="Project" Version="3.0.0"
56+
xmlns="http://schemas.microsoft.com/developer/vstemplate/2005">
57+
<TemplateData>
58+
<Name>My template</Name>
59+
<Description>A basic template</Description>
60+
<Icon>TemplateIcon.ico</Icon>
61+
<ProjectType>CSharp</ProjectType>
62+
<BuildOnLoad>true</BuildOnLoad>
63+
</TemplateData>
64+
<TemplateContent>
65+
<Project File="MyTemplate.csproj">
66+
<ProjectItem>Form1.cs<ProjectItem>
67+
<ProjectItem>Form1.Designer.cs</ProjectItem>
68+
<ProjectItem>Program.cs</ProjectItem>
69+
<ProjectItem>Properties\AssemblyInfo.cs</ProjectItem>
70+
<ProjectItem>Properties\Resources.resx</ProjectItem>
71+
<ProjectItem>Properties\Resources.Designer.cs</ProjectItem>
72+
<ProjectItem>Properties\Settings.settings</ProjectItem>
73+
<ProjectItem>Properties\Settings.Designer.cs</ProjectItem>
74+
</Project>
75+
</TemplateContent>
76+
</VSTemplate>
77+
```
78+
79+
## See also
80+
81+
- [BuildProjectOnload element](buildprojectonload-element-visual-studio-templates.md)
82+
- [TemplateContent element](../extensibility/templatecontent-element-visual-studio-templates.md)
83+
- [Creating project and item templates](../ide/creating-project-and-item-templates.md)
84+
- [Visual Studio template schema reference](../extensibility/visual-studio-template-schema-reference.md)

docs/extensibility/buildprojectonload-element-visual-studio-templates.md

Lines changed: 75 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -2,80 +2,85 @@
22
title: "BuildProjectOnload Element (Visual Studio Templates) | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "11/04/2016"
5-
ms.technology:
6-
- "vs-ide-general"
7-
ms.topic: "conceptual"
5+
ms.technology: vs-ide-general
6+
ms.topic: reference
87
ms.assetid: b07d3074-0fc9-45e1-baf5-da6bd4f3f1c0
98
author: "gregvanl"
109
ms.author: "gregvanl"
1110
manager: douge
12-
ms.workload:
11+
ms.workload:
1312
- "vssdk"
1413
---
1514
# BuildProjectOnload element (Visual Studio templates)
16-
Builds only new projects as you create and add them to a solution. The entire solution isn't built.
17-
18-
\<VSTemplate>
19-
\<TemplateData>
20-
\<BuildProjectOnLoad>
21-
22-
## Syntax
23-
24-
```vb
25-
<BuildProjectOnLoad> true/false </BuildOnLoad>
26-
```
27-
28-
## Attributes and elements
29-
The following sections describe attributes, child elements, and parent elements.
30-
31-
### Attributes
32-
None.
33-
34-
### Child elements
35-
None.
36-
37-
### Parent elements
38-
39-
|Element|Description|
40-
|-------------|-----------------|
41-
|`TemplateData`|Categorizes the template and defines how it appears in both the **New Project** and the **Add New Item** dialog boxes.|
42-
43-
## Text value
44-
A text value is required.
45-
46-
The text must be either `true` or `false` to indicate whether to build only the new project when it's created from the template.
47-
48-
## Remarks
49-
`BuildProjectOnLoad` is an optional element. The default value is `false`.
50-
51-
## Example
52-
The following example illustrates the metadata for a Visual C# template.
53-
54-
```
55-
<VSTemplate Type="Project" Version="3.0.0"
56-
xmlns="http://schemas.microsoft.com/developer/vstemplate/2005">
57-
<TemplateData>
58-
<Name>My template</Name>
59-
<Description>A basic template</Description>
60-
<Icon>TemplateIcon.ico</Icon>
61-
<ProjectType>CSharp</ProjectType>
62-
<BuildProjectOnload>true</BuildProjectOnLoad>
63-
</TemplateData>
64-
<TemplateContent>
65-
<Project File="MyTemplate.csproj">
66-
<ProjectItem>Form1.cs<ProjectItem>
67-
<ProjectItem>Form1.Designer.cs</ProjectItem>
68-
<ProjectItem>Program.cs</ProjectItem>
69-
<ProjectItem>Properties\AssemblyInfo.cs</ProjectItem>
70-
<ProjectItem>Properties\Resources.resx</ProjectItem>
71-
<ProjectItem>Properties\Resources.Designer.cs</ProjectItem>
72-
<ProjectItem>Properties\Settings.settings</ProjectItem>
73-
<ProjectItem>Properties\Settings.Designer.cs</ProjectItem>
74-
</Project>
75-
</TemplateContent>
76-
</VSTemplate>
77-
```
78-
79-
## See also
80-
[Creating project and item templates](../ide/creating-project-and-item-templates.md)
81-
[Visual Studio template schema reference](../extensibility/visual-studio-template-schema-reference.md)
15+
Builds only new projects as you create and add them to a solution. The entire solution isn't built.
16+
17+
Element hierarchy:
18+
19+
```xml
20+
<VSTemplate>
21+
<TemplateData>
22+
<BuildProjectOnLoad>
23+
```
24+
25+
## Syntax
26+
27+
```vb
28+
<BuildProjectOnLoad> true/false </BuildProjectOnLoad>
29+
```
30+
31+
## Attributes and elements
32+
The following sections describe attributes, child elements, and parent elements.
33+
34+
### Attributes
35+
None.
36+
37+
### Child elements
38+
None.
39+
40+
### Parent elements
41+
42+
|Element|Description|
43+
|-------------|-----------------|
44+
|`TemplateData`|Categorizes the template and defines how it appears in both the **New Project** and the **Add New Item** dialog boxes.|
45+
46+
## Text value
47+
A text value is required.
48+
49+
The text must be either `true` or `false` to indicate whether to build only the new project when it's created from the template.
50+
51+
## Remarks
52+
`BuildProjectOnLoad` is an optional element. The default value is `false`.
53+
54+
## Example
55+
The following example illustrates the metadata for a Visual C# template.
56+
57+
```xml
58+
<VSTemplate Type="Project" Version="3.0.0"
59+
xmlns="http://schemas.microsoft.com/developer/vstemplate/2005">
60+
<TemplateData>
61+
<Name>My template</Name>
62+
<Description>A basic template</Description>
63+
<Icon>TemplateIcon.ico</Icon>
64+
<ProjectType>CSharp</ProjectType>
65+
<BuildProjectOnload>true</BuildProjectOnLoad>
66+
</TemplateData>
67+
<TemplateContent>
68+
<Project File="MyTemplate.csproj">
69+
<ProjectItem>Form1.cs<ProjectItem>
70+
<ProjectItem>Form1.Designer.cs</ProjectItem>
71+
<ProjectItem>Program.cs</ProjectItem>
72+
<ProjectItem>Properties\AssemblyInfo.cs</ProjectItem>
73+
<ProjectItem>Properties\Resources.resx</ProjectItem>
74+
<ProjectItem>Properties\Resources.Designer.cs</ProjectItem>
75+
<ProjectItem>Properties\Settings.settings</ProjectItem>
76+
<ProjectItem>Properties\Settings.Designer.cs</ProjectItem>
77+
</Project>
78+
</TemplateContent>
79+
</VSTemplate>
80+
```
81+
82+
## See also
83+
84+
- [BuildOnLoad attribute and element](buildonload-visual-studio-templates.md)
85+
- [Creating project and item templates](../ide/creating-project-and-item-templates.md)
86+
- [Visual Studio template schema reference](../extensibility/visual-studio-template-schema-reference.md)

0 commit comments

Comments
 (0)