Skip to content

Commit f775fca

Browse files
authored
Merge pull request #4835 from Mikejo5000/mikejo-br15
GitHub issue fixes
2 parents de1cd60 + 92ac72c commit f775fca

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

docs/deployment/deploying-applications-services-and-components.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Deployment feature tour"
2+
title: "First look at deployment"
33
description: "Learn about your options for deploying apps from Visual Studio."
44
ms.custom: "mvc"
55
ms.date: 01/29/2019
@@ -116,6 +116,16 @@ You can enable more sophisticated development and testing by deploying your appl
116116

117117
You can use Azure Pipelines to enable continuous deployment of your app. For more information, see [Azure Pipelines](/azure/devops/pipelines/index?view=vsts) and [Deploy to Azure](/azure/devops/deploy-azure/index?view=vsts).
118118

119+
## Deploy a SQL database
120+
121+
- [Change target platform and publish a database project (SQL Server Data Tools (SSDT))](/sql/ssdt/how-to-change-target-platform-and-publish-a-database-project)
122+
123+
- [Deploy an Analysis Services Project (SSAS)](/sql/analysis-services/multidimensional-tutorial/lesson-2-5-deploying-an-analysis-services-project)
124+
125+
- [Deploy Integration Services (SSIS) projects and packages](/sql/integration-services/packages/deploy-integration-services-ssis-projects-and-packages)
126+
127+
- [Build and deploy to a local database](/sql/ssdt/how-to-build-and-deploy-to-a-local-database)
128+
119129
## Deployment for other app types
120130

121131
| App type | Deployment Scenario | Link |

docs/javascript/create-application-with-vuejs.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,15 @@ These steps require vue-cli 3.0, which is currently in beta.
164164
165165
#### Build with vue-cli 3.0
166166
167-
An unknown issue with the vue-cli 3.0 prevents automating the build process. Each time that you try to refresh the wwwroot folder, you need to run the command `npm run build` on the client-app folder.
167+
An unknown issue with the vue-cli 3.0 may prevent automating the build process. Each time that you try to refresh the wwwroot folder, you need to run the command `npm run build` on the client-app folder.
168+
169+
Alternatively, you can build the vue-cli 3.0 project as a pre-build event using the ASP.NET project properties. Right-click the project, choose **Properties**, and include the following commands in the **Build** tab, in the **Pre-build event command line** text box.
170+
171+
``` cmd
172+
cd ./client-app
173+
npm run build
174+
cd ../
175+
```
168176
169177
## Limitations
170178

docs/profiling/beginners-guide-to-performance-profiling.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,9 @@ We recommend that you begin analyzing your data by examining the list of functio
143143
![Diagnostics Tools Hot Path](../profiling/media/vs-2019/diag-tools-hot-path.png "DiagToolsHotPath")
144144
::: moniker-end
145145

146+
> [!NOTE]
147+
> If you see code in the call tree marked as "broken" code or "unwalkable stack", this indicates that Event Tracing for Windows (ETW) events were likely dropped. Try collecting the same trace a second time to resolve the issue.
148+
146149
## View external code
147150

148151
External code are functions in system and framework components that are executed by the code you write. External code include functions that start and stop the app, draw the UI, control threading, and provide other low-level services to the app. In most cases, you won't be interested in external code, and so the CPU Usage tool gathers the external functions of a user method into one **[External Code]** node.

0 commit comments

Comments
 (0)