Skip to content

Commit 6dc2f6c

Browse files
Merge pull request #2 from MicrosoftDocs/master
bringing them in
2 parents 99c42d1 + 395e641 commit 6dc2f6c

File tree

780 files changed

+9349
-8231
lines changed

Some content is hidden

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

780 files changed

+9349
-8231
lines changed

.openpublishing.redirection.json

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2020,11 +2020,61 @@
20202020
"redirect_url": "/visualstudio/test/run-unit-tests-with-test-explorer",
20212021
"redirect_document_id": false
20222022
},
2023+
{
2024+
"source_path": "docs/test/sample-coded-ui-test-extension-for-excel.md",
2025+
"redirect_url": "/visualstudio/test/extending-coded-ui-tests-and-action-recordings-to-support-microsoft-excel",
2026+
"redirect_document_id": false
2027+
},
2028+
{
2029+
"source_path": "docs/test/sample-excel-add-in-for-coded-ui-testing.md",
2030+
"redirect_url": "/visualstudio/test/extending-coded-ui-tests-and-action-recordings-to-support-microsoft-excel",
2031+
"redirect_document_id": false
2032+
},
2033+
{
2034+
"source_path": "docs/test/sample-excel-communicator-interface.md",
2035+
"redirect_url": "/visualstudio/test/extending-coded-ui-tests-and-action-recordings-to-support-microsoft-excel",
2036+
"redirect_document_id": false
2037+
},
2038+
{
2039+
"source_path": "docs/test/sample-excel-extension-actionfilter-class.md",
2040+
"redirect_url": "/visualstudio/test/extending-coded-ui-tests-and-action-recordings-to-support-microsoft-excel",
2041+
"redirect_document_id": false
2042+
},
2043+
{
2044+
"source_path": "docs/test/sample-excel-extension-element-classes.md",
2045+
"redirect_url": "/visualstudio/test/extending-coded-ui-tests-and-action-recordings-to-support-microsoft-excel",
2046+
"redirect_document_id": false
2047+
},
2048+
{
2049+
"source_path": "docs/test/sample-excel-extension-extensionpackage-class.md",
2050+
"redirect_url": "/visualstudio/test/extending-coded-ui-tests-and-action-recordings-to-support-microsoft-excel",
2051+
"redirect_document_id": false
2052+
},
2053+
{
2054+
"source_path": "docs/test/sample-excel-extension-propertyprovider-class.md",
2055+
"redirect_url": "/visualstudio/test/extending-coded-ui-tests-and-action-recordings-to-support-microsoft-excel",
2056+
"redirect_document_id": false
2057+
},
2058+
{
2059+
"source_path": "docs/test/sample-excel-extension-technologymanager-class.md",
2060+
"redirect_url": "/visualstudio/test/extending-coded-ui-tests-and-action-recordings-to-support-microsoft-excel",
2061+
"redirect_document_id": false
2062+
},
20232063
{
20242064
"source_path": "docs/test/testing-store-apps-with-visual-studio.md",
20252065
"redirect_url": "/visualstudio/test/create-and-run-unit-tests-for-a-store-app-in-visual-studio/",
20262066
"redirect_document_id": false
20272067
},
2068+
{
2069+
"source_path": "docs/test/test-windows-phone-8-1-apps-with-coded-ui-tests.md",
2070+
"redirect_url": "/visualstudio/test/test-uwp-app-with-coded-ui-test",
2071+
"redirect_document_id": false
2072+
},
2073+
{
2074+
"source_path": "docs/test/test-windows-store-8-1-apps-with-coded-ui-tests.md",
2075+
"redirect_url": "/visualstudio/test/test-uwp-app-with-coded-ui-test",
2076+
"redirect_document_id": false
2077+
},
20282078
{
20292079
"source_path": "docs/test/troubleshooting-code-analysis-issues.md",
20302080
"redirect_url": "/visualstudio/code-quality/analyzing-application-quality-by-using-code-analysis-tools",

docs/code-quality/cpp-core-guidelines-warnings.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ The C++ Core Guidelines are a portable set of guidelines, rules, and best practi
2020
## Enable the C++ Core Check guidelines in Code Analysis
2121
You can enable code analysis on your project by selecting the **Enable Code Analysis on Build** checkbox in the **Code Analysis** section of the **Property Pages** dialog for your project.
2222

23-
![Property page for Code Analysis General settings](../code-quality/media/cppcorecheck_codeanalysis_general.png "CPPCoreCheck_CodeAnalysis_General")
23+
![Property page for Code Analysis General settings](../code-quality/media/cppcorecheck_codeanalysis_general.png)
2424

2525
The C++ Core Check rules are extensions to the default rule sets that run when code analysis is enabled. Because the C++ Core Check rules are under development, some rules are well established, and some may not be ready for use on all code, but may still be informative. The rules are divided into two groups: released and experimental. You can choose whether to run the released or experimental rules in the properties for your project.
2626

27-
![Property page for Code Analysis Extensions settings](../code-quality/media/cppcorecheck_codeanalysis_extensions.png "CPPCoreCheck_CodeAnalysis_Extensions")
27+
![Property page for Code Analysis Extensions settings](../code-quality/media/cppcorecheck_codeanalysis_extensions.png)
2828

2929
To enable or disable the C++ Core Check rule sets, open the **Property Pages** dialog for your project. Under **Configuration Properties**, expand **Code Analysis**, **Extensions**. In the dropdown control next to **Enable C++ Core Check (Released)** or **Enable C++ Core Check (Experimental)**, choose **Yes** or **No**. Choose **OK** or **Apply** to save your changes.
3030

@@ -223,7 +223,7 @@ You will need to set a few environment variables and use proper command line opt
223223

224224
2. In the **NuGet Package Manager** window, search for Microsoft.CppCoreCheck.
225225

226-
![Nuget Package Manager window shows CppCoreCheck package](../code-quality/media/cppcorecheck_nuget_window.PNG "CPPCoreCheck_Nuget_Window")
226+
![Nuget Package Manager window shows CppCoreCheck package](../code-quality/media/cppcorecheck_nuget_window.png)
227227

228228
3. Select the Microsoft.CppCoreCheck package and then choose the **Install** button to add the rules to your project.
229229

docs/code-quality/using-the-cpp-core-guidelines-checkers.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ The C++ Core Guidelines are a portable set of guidelines, rules, and best practi
1919
## Enable the C++ Core Check guidelines in Code Analysis
2020
You can enable code analysis on your project by selecting the **Enable Code Analysis on Build** checkbox in the **Code Analysis** section of the **Property Pages** dialog for your project.
2121

22-
![Property page for Code Analysis General settings](../code-quality/media/cppcorecheck_codeanalysis_general.png "CPPCoreCheck_CodeAnalysis_General")
22+
![Property page for Code Analysis General settings](../code-quality/media/cppcorecheck_codeanalysis_general.png)
2323

2424
The C++ Core Check rules are extensions to the default rule sets that run when code analysis is enabled. Because the C++ Core Check rules are under development, some rules are well established, and some may not be ready for use on all code, but may still be informative. The rules are divided into two groups: released and experimental. You can choose whether to run the released or experimental rules in the properties for your project.
2525

26-
![Property page for Code Analysis Extensions settings](../code-quality/media/cppcorecheck_codeanalysis_extensions.png "CPPCoreCheck_CodeAnalysis_Extensions")
26+
![Property page for Code Analysis Extensions settings](../code-quality/media/cppcorecheck_codeanalysis_extensions.png)
2727

2828
To enable or disable the C++ Core Check rule sets, open the **Property Pages** dialog for your project. Under **Configuration Properties**, expand **Code Analysis**, **Extensions**. In the dropdown control next to **Enable C++ Core Check (Released)** or **Enable C++ Core Check (Experimental)**, choose **Yes** or **No**. Choose **OK** or **Apply** to save your changes.
2929

@@ -237,7 +237,7 @@ You have to set a few environment variables and use proper command-line options
237237

238238
2. In the **NuGet Package Manager** window, search for Microsoft.CppCoreCheck.
239239

240-
![Nuget Package Manager window shows CppCoreCheck package](../code-quality/media/cppcorecheck_nuget_window.PNG "CPPCoreCheck_Nuget_Window")
240+
![Nuget Package Manager window shows CppCoreCheck package](../code-quality/media/cppcorecheck_nuget_window.png)
241241

242242
3. Select the Microsoft.CppCoreCheck package and then choose the **Install** button to add the rules to your project.
243243

docs/code-quality/walkthrough-analyzing-managed-code-for-code-defects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ This walkthrough steps you through the process of using code analysis to analyze
2525

2626
1. On the **File** menu, choose **New** > **Project...**.
2727

28-
1. In the **New Project** dialog box, expand **Installed** > **Visual C#**, and then choose **Windows Classic Desktop**.
28+
1. In the **New Project** dialog box, expand **Installed** > **Visual C#**, and then choose **Windows Desktop**.
2929

3030
1. Choose the **Class Library (.NET Framework)** template.
3131

0 commit comments

Comments
 (0)