Skip to content

Commit 6d0b16b

Browse files
agockeMikejo5000
andauthored
Apply suggestions from code review
Co-authored-by: Mike Jones <[email protected]>
1 parent a243b76 commit 6d0b16b

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

docs/code-quality/code-analysis-warnings-for-managed-code-by-checkid.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -601,5 +601,5 @@ The following table lists Code Analysis warnings for managed code by the CheckId
601601
| CA5400 | [CA5400 Ensure HttpClient certificate revocation list check is not disabled](../code-quality/ca5400.md) | A revoked certificate isn't trusted anymore. It could be used by attackers passing some malicious data or stealing sensitive data in HTTPS communication. |
602602
| CA5401 | [CA5401 Do not use CreateEncryptor with non-default IV](../code-quality/ca5401.md) | Symmetric encryption should always use a non-repeatable initialization vector to prevent dictionary attacks. |
603603
| CA5402 | [CA5402 Use CreateEncryptor with the default IV](../code-quality/ca5402.md) | Symmetric encryption should always use a non-repeatable initialization vector to prevent dictionary attacks. |
604-
| IL3000 | [IL3000 Avoid accessing Assembly file path when publishing as a single-file](../code-quality/il3000.md) | Avoid using accessing Assembly file path when publishing as a single-file |
605-
| IL3001 | [IL3000 Avoid accessing Assembly file path when publishing as a single-file](../code-quality/il3000.md) | Avoid accessing Assembly file path when publishing as a single-file |
604+
| IL3000 | [IL3000 Avoid accessing Assembly file path when publishing as a single file](../code-quality/il3000.md) | Avoid using accessing Assembly file path when publishing as a single file |
605+
| IL3001 | [IL3001 Avoid accessing Assembly file path when publishing as a single-file](../code-quality/il3001.md) | Avoid accessing Assembly file path when publishing as a single-file |

docs/code-quality/il3000.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "IL3000: Avoid accessing Assembly file path when publishing as a single-file"
2+
title: "IL3000: Avoid accessing Assembly file path when publishing as a single file"
33
description: "Assembly.Location always returns an empty string for assemblies embedded in a single-file bundle"
44
ms.date: 08/04/2020
55
ms.topic: reference
@@ -12,7 +12,7 @@ f1_keywords:
1212
- "IL3000"
1313
- "AvoidAssemblyLocationInSingleFile"
1414
---
15-
# IL3000: Avoid accessing Assembly file path when publishing as a single-file
15+
# IL3000: Avoid accessing Assembly file path when publishing as a single file
1616

1717
## Cause
1818

docs/code-quality/il3001.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "IL3001: Avoid accessing Assembly file path when publishing as a single-file"
2+
title: "IL3001: Avoid accessing Assembly file path when publishing as a single file"
33
description: "Assembly.GetFile(s) will throw for assemblies embedded in a single-file app"
44
ms.date: 08/18/2020
55
ms.topic: reference
@@ -12,11 +12,11 @@ f1_keywords:
1212
- "IL3001"
1313
- "AvoidAssemblyLocationInSingleFile"
1414
---
15-
# IL3001: Avoid accessing Assembly file path when publishing as a single-file
15+
# IL3001: Avoid accessing Assembly file path when publishing as a single file
1616

1717
## Cause
1818

19-
When publishing as a single-file (for example, by setting the PublishSingleFile property in a project to true), calling the `Assembly.GetFile(s)` methods for
19+
When publishing as a single file (for example, by setting the PublishSingleFile property in a project to true), calling the `Assembly.GetFile(s)` methods for
2020
assemblies embedded inside the single-file bundle always throws an exception.
2121

2222
## How to fix violations

docs/code-quality/toc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -989,7 +989,7 @@
989989
items:
990990
- name: Overview
991991
displayName: "publish warnings"
992-
- name: "IL3000: Avoid accessing Assembly file path when publishing as a single-file"
992+
- name: "IL3000: Avoid accessing Assembly file path when publishing as a single file"
993993
href: il3000.md
994-
- name: "IL3001: Avoid accessing Assembly file path when publishing as a single-file"
994+
- name: "IL3001: Avoid accessing Assembly file path when publishing as a single file"
995995
href: il3001.md

0 commit comments

Comments
 (0)