Skip to content

Commit e359b93

Browse files
Merge pull request #6944 from Mikejo5000/mikejo-br18
F1 keyword updates
2 parents 5882014 + e04e7f2 commit e359b93

File tree

4 files changed

+31
-4
lines changed

4 files changed

+31
-4
lines changed

docs/code-quality/ca1724.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: 'CA1724: Type Names Should Not Match Namespaces'
3-
ms.date: 09/28/2018
3+
ms.date: 07/21/2020
44
ms.topic: reference
55
f1_keywords:
66
- TypeNamesShouldNotMatchNamespaces
@@ -38,3 +38,15 @@ Rename the type such that it doesn't match the name of a referenced namespace th
3838
## When to suppress warnings
3939

4040
For new development, no known scenarios occur where you must suppress a warning from this rule. Before you suppress the warning, carefully consider how the users of your library might be confused by the matching name. For shipping libraries, you might have to suppress a warning from this rule.
41+
42+
## Example
43+
44+
```csharp
45+
namespace MyNamespace
46+
{
47+
// This class violates the rule
48+
public class System
49+
{
50+
}
51+
}
52+
```

docs/code-quality/code-metrics-values.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,14 @@
22
title: Calculate code metrics
33
ms.date: 11/02/2018
44
ms.topic: conceptual
5+
f1_keywords:
6+
- vs.codeanalysis.codemetrics.toolwindow
7+
dev_langs:
8+
- "CSharp"
9+
- "VB"
10+
- "FSharp"
511
helpviewer_keywords:
6-
- code metrics [Visual Studio]
12+
- code metrics [Visual Studio]
713
author: mikejo5000
814
ms.author: mikejo
915
manager: jillfra

docs/code-quality/how-to-configure-code-analysis-for-a-managed-code-project.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ ms.topic: how-to
55
f1_keywords:
66
- vs.codeanalysis.propertypages.csvb
77
- vs.codeanalysis.propertypages.solution
8+
- vs.codeanalysis.propertypages.asp
9+
dev_langs:
10+
- "CSharp"
11+
- "VB"
12+
- "FSharp"
813
helpviewer_keywords:
914
- code analysis, selecting rule sets
1015
- code analysis, rule sets

docs/profiling/profiling-feature-tour.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ title: "Measure performance with profiling tools"
33
description: "Take a brief look at the different diagnostic tools available in Visual Studio."
44
ms.custom: "mvc"
55
ms.date: 06/03/2020
6-
ms.topic: quickstart
6+
ms.topic: overview
7+
f1_keywords:
8+
- vs.diagnosticshub.overview
9+
dev_langs:
10+
- "CSharp"
711
helpviewer_keywords:
812
- "diagnostic tools"
913
ms.assetid: d2ee0301-ea78-43d8-851a-71b7b2043d73
@@ -162,7 +166,7 @@ To diagnose UI responsiveness, slow loading time, and slow visual updates in UWP
162166
::: moniker range="vs-2017"
163167
## Analyze network usage (UWP)
164168

165-
In UWP apps, you can analyze network operations performed using the `Windows.Web.Http` API.This tool may help you to resolve issues like access and authentication problems, incorrect cache-use, and poor display and download performance. To use the tool, choose **Network** in the Performance Profiler, and then choose **Start**. In your app, go through the scenario that uses `Windows.Web.Http`, and then choose **Stop collection** to generate the report.
169+
In UWP apps, you can analyze network operations performed using the `Windows.Web.Http` API. This tool may help you to resolve issues like access and authentication problems, incorrect cache-use, and poor display and download performance. To use the tool, choose **Network** in the Performance Profiler, and then choose **Start**. In your app, go through the scenario that uses `Windows.Web.Http`, and then choose **Stop collection** to generate the report.
166170

167171
![Network Usage profiling tool](../profiling/media/prof-tour-network-usage.png "Diag Network Usage")
168172

0 commit comments

Comments
 (0)