Skip to content

Commit 5530a8b

Browse files
authored
Merge branch 'master' into merges/release/5.0.2xx-to-master
2 parents 26b2159 + 9df0075 commit 5530a8b

File tree

541 files changed

+12128
-5311
lines changed

Some content is hidden

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

541 files changed

+12128
-5311
lines changed

.devcontainer/devcontainer.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"postCreateCommand": "devinit init"
3+
}

.devcontainer/devinit.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"run": [
3+
{
4+
"tool": "require-dotnetcoresdk"
5+
}
6+
]
7+
}

.editorconfig

+4-3
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,12 @@ visual_basic_style_unused_value_assignment_preference = unused_local_variable:wa
185185
### Configuration for IDE code style by diagnostic IDs ###
186186
[*.{cs,vb}]
187187

188+
# Default severity for all IDE code style rules with category 'Style'
188189
dotnet_analyzer_diagnostic.category-Style.severity = warning
189190

191+
# Default severity for all IDE code quality rules with category 'CodeQuality'
192+
dotnet_analyzer_diagnostic.category-CodeQuality.severity = warning
193+
190194
# IDE0066: Convert switch statement to expression
191195
dotnet_diagnostic.IDE0066.severity = suggestion
192196

@@ -202,9 +206,6 @@ dotnet_diagnostic.IDE0002.severity = silent
202206
# IDE0003: Name can be simplified
203207
dotnet_diagnostic.IDE0003.severity = silent
204208

205-
# IDE005_gen: Remove unnecessary usings in generated code
206-
dotnet_diagnostic.IDE0005_gen.severity = silent
207-
208209
# IDE0007: Use 'var' instead of explicit type
209210
dotnet_diagnostic.IDE0007.severity = silent
210211

.github/ISSUE_TEMPLATE/bug-report.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,24 @@ assignees: ''
99

1010
### Analyzer
1111

12-
**Diagnostic ID**: [CA2013](https://docs.microsoft.com/visualstudio/code-quality/ca2013): `Do not use ReferenceEquals with value types`
12+
**Diagnostic ID**: [CA2013](https://docs.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca2013): `Do not use ReferenceEquals with value types`
1313

1414
### Analyzer source
1515

1616
**SDK**: [Built-in CA analyzers in .NET 5 SDK or later](https://docs.microsoft.com/dotnet/fundamentals/productivity/code-analysis)
1717

18-
**Version**: [SDK 5.0.100-preview.8](https://dotnet.microsoft.com/download/dotnet/5.0)
18+
**Version**: [SDK 5.0.100](https://dotnet.microsoft.com/download/dotnet/5.0)
1919

2020
_OR_
2121

2222
**NuGet Package**: [Microsoft.CodeAnalysis.FxCopAnalyzers](https://www.nuget.org/packages/Microsoft.CodeAnalysis.FxCopAnalyzers)
2323

24-
**Version**: v3.3.0 (Latest)
24+
**Version**: v3.3.1 (Latest)
25+
26+
<!--
27+
NOTE: FxCopAnalyzers package has been deprecated in favor of 'Microsoft.CodeAnalysis.NetAnalyzers', that ships with the .NET SDK.
28+
Please refer to https://docs.microsoft.com/visualstudio/code-quality/migrate-from-fxcop-analyzers-to-net-analyzers to migrate to .NET analyzers.
29+
-->
2530

2631
### Describe the bug
2732

.github/ISSUE_TEMPLATE/rule-improvement.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ assignees: ''
99

1010
### Analyzer
1111

12-
**Diagnostic ID**: [CA1716](https://docs.microsoft.com/visualstudio/code-quality/ca1716)
12+
**Diagnostic ID**: [CA1716](https://docs.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1716)
1313

1414
### Describe the improvement
1515

.github/PULL_REQUEST_TEMPLATE.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!--
2+
3+
Make sure to run `msbuild RoslynAnalyzers.sln /t:pack` and `msbuild FxCopAnalyzers.sln /t:pack` in the repository root when
4+
you have any of the following changes that affect auto-generated files. Otherwise, the CI build will fail.
5+
6+
- Adding a new diagnostic analyzer or a code fix
7+
- Adding or updating resource strings used by analyzers and code fixes
8+
- Updating analyzer package versions in [Versions.props](../eng/Versions.props)
9+
10+
(Consider merging master into your branch before you run msbuild pack to reduce having merge conflicts)
11+
12+
If you're adding a new rule, Make sure to read the guidlines in: https://github.com/dotnet/roslyn-analyzers/blob/master/GuidelinesForNewRules.md.
13+
Also, see https://docs.microsoft.com/contribute/dotnet/dotnet-contribute-code-analysis#contribute-docs-for-caxxxx-rules for documentation guidelines.
14+
15+
16+
-->

Directory.Build.targets

+9-27
Original file line numberDiff line numberDiff line change
@@ -57,38 +57,20 @@
5757
Properties="TargetFramework=%(_TargetFramework.Identity)" />
5858
</Target>
5959

60-
<Target Name="OuterGenerateCoverageResult" AfterTargets="RunTests" Condition="'$(IsUnitTestProject)' == 'true' AND '$(TargetFramework)' == ''">
60+
<Target Name="OuterGenerateCoverageResult" BeforeTargets="Test" Condition="'$(IsUnitTestProject)' == 'true' AND '$(TargetFramework)' == ''">
6161
<MSBuild
6262
Projects="$(MSBuildProjectFullPath)"
6363
Targets="InnerGenerateCoverageResult"
6464
Properties="TargetFramework=%(_TargetFramework.Identity)" />
6565
</Target>
6666

67-
<Target Name="InnerInstrumentModulesNoBuild" BeforeTargets="RunTests" Condition="'$(IsUnitTestProject)' == 'true' AND '$(TargetFramework)' != ''">
68-
<Coverlet.MSbuild.Tasks.InstrumentationTask
69-
Condition="'$(CollectCoverage)' == 'true'"
70-
Path="$(TargetPath)"
71-
Include="$(Include)"
72-
IncludeDirectory="$(IncludeDirectory)"
73-
Exclude="$(Exclude)"
74-
ExcludeByFile="$(ExcludeByFile)"
75-
ExcludeByAttribute="$(ExcludeByAttribute)"
76-
IncludeTestAssembly="$(IncludeTestAssembly)"
77-
SingleHit="$(SingleHit)"
78-
MergeWith="$(MergeWith)"
79-
UseSourceLink="$(UseSourceLink)" >
80-
<Output TaskParameter="InstrumenterState" PropertyName="InstrumenterState"/>
81-
</Coverlet.MSbuild.Tasks.InstrumentationTask>
82-
</Target>
67+
<Target Name="InnerInstrumentModulesNoBuild"
68+
BeforeTargets="RunTests"
69+
DependsOnTargets="InstrumentModules"
70+
Condition="'$(IsUnitTestProject)' == 'true' AND '$(TargetFramework)' != '' AND '$(CollectCoverage)' == 'true'" />
8371

84-
<Target Name="InnerGenerateCoverageResult" AfterTargets="RunTests" Condition="'$(IsUnitTestProject)' == 'true' AND '$(TargetFramework)' != ''">
85-
<Coverlet.MSbuild.Tasks.CoverageResultTask
86-
Condition="'$(CollectCoverage)' == 'true'"
87-
Output="$(CoverletOutput)"
88-
OutputFormat="$(CoverletOutputFormat)"
89-
Threshold="$(Threshold)"
90-
ThresholdType="$(ThresholdType)"
91-
ThresholdStat="$(ThresholdStat)"
92-
InstrumenterState="$(InstrumenterState)"/>
93-
</Target>
72+
<Target Name="InnerGenerateCoverageResult"
73+
BeforeTargets="Test"
74+
DependsOnTargets="GenerateCoverageResult"
75+
Condition="'$(IsUnitTestProject)' == 'true' AND '$(TargetFramework)' != '' AND '$(CollectCoverage)' == 'true'" />
9476
</Project>

GuidelinesForNewRules.md

+4-16
Original file line numberDiff line numberDiff line change
@@ -25,25 +25,13 @@
2525
3. A good rule of thumb is that if your analyzer needs to invoke `GetTypeByMetadataName`, then most likely it is an API specific analyzer and belongs to `Microsoft.NetCore.Analyzers`.
2626

2727
5. Documentation requirements:
28-
1. **New CA rule must be documented**: Each rule ID `CAxxxx` is automatically assigned the help link `https://docs.microsoft.com/visualstudio/code-quality/caxxxx`. The documentation for this page is populated from `caxxxx.md` file at [visualstudio-docs code-quality folder](https://github.com/MicrosoftDocs/visualstudio-docs/tree/master/docs/code-quality). For example, `CA1000` is documented at [ca1000.md](https://github.com/MicrosoftDocs/visualstudio-docs/blob/master/docs/code-quality/ca1000.md) file. Documenting a new rule is primarily ensuring a PR is sent to `MicrosoftDocs` repo to add `caxxxx.md` file for the new rule. Detailed steps are given below.
28+
1. **New CA rule must be documented**: Each rule ID `CAxxxx` is automatically assigned the help link `https://docs.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/caxxxx`. The documentation for this page is populated from `caxxxx.md` file at [dotnet/docs quality-rules folder](https://github.com/dotnet/docs/tree/master/docs/fundamentals/code-analysis/quality-rules). For example, `CA1000` is documented at [ca1000.md](https://github.com/dotnet/docs/tree/master/docs/fundamentals/code-analysis/quality-rules/ca1000.md) file. Documenting a new rule is primarily ensuring a PR is sent to `dotnet/docs` repo to add `caxxxx.md` file for the new rule. Detailed steps are given below.
2929
2. **Documentation PR must be submitted within ONE WEEK of the rule implementation being merged**. Note that we will communicate this requirement on each PR contributing a new CA rule. We reserve the right to revert the rule implementation PR if this documentation requirement is not met.
3030

3131
## Guidelines for creating documentation PR
3232

33-
1. Documentation PR must be submitted to the following repo:
34-
1. [_External contributors_](https://github.com/MicrosoftDocs/visualstudio-docs)
35-
2. [_Internal contributors_](https://github.com/MicrosoftDocs/visualstudio-docs-pr)
33+
1. Documentation PR must be submitted to the [dotnet/docs](https://github.com/dotnet/docs) repo:
3634

37-
Please review [CONTRIBUTING.md](https://github.com/MicrosoftDocs/visualstudio-docs/blob/master/CONTRIBUTING.md) for guidelines.
38-
2. Documentation PR for a new CA rule must have following changes:
39-
1. New `caxxxx.md` file under `/docs/code-quality` sub-folder with rule documentation.
35+
Please review [Contribute docs for .NET code analysis rules to the .NET docs repository](https://docs.microsoft.com/contribute/dotnet/dotnet-contribute-code-analysis) for guidelines.
4036

41-
`TIP:` Clone an existing `caxxxx.md` file inside `/docs/code-quality` sub-folder in the repo, rename it and update the contents for the new rule.
42-
2. Update the following tables in the repo for supported CA rule IDs:
43-
1. Add entry in `/docs/code-quality/toc.yml` under appropriate category.
44-
2. Add entry in `/docs/code-quality/code-analysis-warnings-for-managed-code-by-checkid.md`
45-
3. Add entry in the documentation file `/docs/code-quality/<%category%>-warnings.md` for rule's `Category`. For example:
46-
1. For a new rule with category `Design`, add an entry to `/docs/code-quality/design-warnings.md`.
47-
2. For a new rule with category `Performance`, add an entry to `/docs/code-quality/performance-warnings.md`, and so on.
48-
49-
If for some exceptional reason you are unable to submit a PR, please [file a documentation issue](https://github.com/MicrosoftDocs/visualstudio-docs/issues) to add documentation for the rule in future. Please include all relevant information in the issue to allow the documentation experts to easily author the documentation. For example, see [this issue](https://github.com/MicrosoftDocs/visualstudio-docs/issues/3454).
37+
If for some exceptional reason you are unable to submit a PR, please [file a documentation issue](https://github.com/dotnet/docs/issues) to add documentation for the rule in future. Please include all relevant information in the issue to allow the documentation experts to easily author the documentation.

NuGet.config

-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
<add key="dotnet-eng" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" />
88
<add key="dotnet-tools" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" />
99
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
10-
<add key="roslyn" value="https://dotnet.myget.org/F/roslyn/api/v3/index.json" />
11-
<add key="roslyn-analyzers" value="https://dotnet.myget.org/F/roslyn-analyzers/api/v3/index.json" />
1210
</packageSources>
1311
<disabledPackageSources>
1412
<clear />

README.md

+6-10
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ Microsoft created a set of analyzers called [Microsoft.CodeAnalysis.FxCopAnalyze
1818

1919
### Microsoft.CodeAnalysis.NetAnalyzers
2020

21-
*Latest stable version:* _Not yet released_
21+
*Latest stable version:* [![NuGet](https://img.shields.io/nuget/v/Microsoft.CodeAnalysis.NetAnalyzers.svg)](https://www.nuget.org/packages/Microsoft.CodeAnalysis.NetAnalyzers)
2222

23-
*Latest pre-release version:* [here](https://dev.azure.com/dnceng/public/_packaging?_a=package&feed=dotnet5&view=overview&package=Microsoft.CodeAnalysis.NetAnalyzers&protocolType=NuGet)
23+
*Latest pre-release version (.NET6 analyzers):* [here](https://dev.azure.com/dnceng/public/_packaging?_a=package&feed=dotnet6&package=Microsoft.CodeAnalysis.NetAnalyzers&protocolType=NuGet)
2424

2525
This is the **primary analyzer package** for this repo that contains all **the .NET code analysis rules (CAxxxx)** that are built into the .NET SDK starting .NET5 release. The documentation for CA rules can be found at [docs.microsoft.com/visualstudio/code-quality/code-analysis-for-managed-code-warnings](https://docs.microsoft.com/visualstudio/code-quality/code-analysis-for-managed-code-warnings).
2626

@@ -154,14 +154,10 @@ See [VERSIONING.md](.//VERSIONING.md) for the versioning scheme for all analyzer
154154

155155
## Recommended version of Analyzer Packages
156156

157-
Recommended Visual Studio Version: **Visual Studio 2019 16.3 RTW or later**
157+
Recommended Analyzer Package Version: **Version 5.0.0**, for example [Microsoft.CodeAnalysis.NetAnalyzers 5.0.0](https://www.nuget.org/packages/Microsoft.CodeAnalysis.NetAnalyzers/5.0.0)
158158

159-
Recommended Analyzer Package Version: **Version 3.3.0**, for example [Microsoft.CodeAnalysis.FxCopAnalyzers 3.3.0](https://www.nuget.org/packages/Microsoft.CodeAnalysis.FxCopAnalyzers/3.3.0)
159+
Required Visual Studio Version: **Visual Studio 2019 16.8 RTW or later**
160160

161-
The documentation for FxCopAnalyzers package versions can be found at [docs.microsoft.com/visualstudio/code-quality/install-fxcop-analyzers](https://docs.microsoft.com/visualstudio/code-quality/install-fxcop-analyzers)
161+
Required .NET SDK Version: **.NET 5.0 SDK or later**
162162

163-
You can also install a custom **Microsoft Code Analysis VSIX** containing these analyzers as a Visual Studio extension for all your managed projects.
164-
165-
1. For Visual Studio 2017 15.5 or later see [here](https://marketplace.visualstudio.com/items?itemName=VisualStudioPlatformTeam.MicrosoftCodeAnalysis2017)
166-
167-
2. For Visual Studio 2019 16.0 or later see [here](https://marketplace.visualstudio.com/items?itemName=VisualStudioPlatformTeam.MicrosoftCodeAnalysis2019)
163+
The documentation for .NET SDK Analyzers can be found [here](https://docs.microsoft.com/dotnet/fundamentals/code-analysis/overview#code-quality-analysis)

RoslynAnalyzers.sln

+15-7
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CodeAnalysis.Perf
8686
EndProject
8787
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers", "src\PerformanceSensitiveAnalyzers\Core\Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers.csproj", "{F2985136-DCB2-492F-A66D-32968A0266F1}"
8888
EndProject
89-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CodeAnalysis.CSharp.PerformanceSensitiveAnalyzers", "src\PerformanceSensitiveAnalyzers\CSharp\Microsoft.CodeAnalysis.CSharp.PerformanceSensitiveAnalyzers.csproj", "{37F2A7AD-FABE-4AEA-AB3D-CE8543D8134E}"
90-
EndProject
9189
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers.Setup", "src\PerformanceSensitiveAnalyzers\Setup\Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers.Setup.csproj", "{5C9B8805-6489-41C5-8FE6-195599C6497F}"
9290
EndProject
9391
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers.UnitTests", "src\PerformanceSensitiveAnalyzers\UnitTests\Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers.UnitTests.csproj", "{F86DCF03-7C4D-40FE-91D2-6206D532DEFD}"
@@ -162,8 +160,13 @@ Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Refactoring.CSharp.Utilitie
162160
EndProject
163161
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Refactoring.VisualBasic.Utilities", "src\Utilities\Refactoring.VisualBasic\Refactoring.VisualBasic.Utilities.shproj", "{4C362C30-C4B1-4C4B-A545-DBF67C7E9153}"
164162
EndProject
163+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CodeAnalysis.CSharp.PerformanceSensitiveAnalyzers", "src\PerformanceSensitiveAnalyzers\CSharp\Analyzers\Microsoft.CodeAnalysis.CSharp.PerformanceSensitiveAnalyzers.csproj", "{8197A037-FF9E-4660-8C6D-2F722FEA0C10}"
164+
EndProject
165+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CodeAnalysis.CSharp.PerformanceSensitiveAnalyzers.CodeFixes", "src\PerformanceSensitiveAnalyzers\CSharp\CodeFixes\Microsoft.CodeAnalysis.CSharp.PerformanceSensitiveAnalyzers.CodeFixes.csproj", "{046419A7-C60D-40FF-AD7E-2BAE461B7CE5}"
166+
EndProject
165167
Global
166168
GlobalSection(SharedMSBuildProjectFiles) = preSolution
169+
src\Utilities\Workspaces\Workspaces.Utilities.projitems*{046419a7-c60d-40ff-ad7e-2bae461b7ce5}*SharedItemsImports = 5
167170
src\Utilities\Compiler\Analyzer.Utilities.projitems*{0a0621f2-d1dc-47ff-b643-c6646557505e}*SharedItemsImports = 5
168171
src\Utilities\Workspaces\Workspaces.Utilities.projitems*{0a0621f2-d1dc-47ff-b643-c6646557505e}*SharedItemsImports = 5
169172
src\Utilities\Workspaces\Workspaces.Utilities.projitems*{0dc347c1-660d-45d8-bdc8-dc439c2e4a67}*SharedItemsImports = 5
@@ -300,10 +303,6 @@ Global
300303
{F2985136-DCB2-492F-A66D-32968A0266F1}.Debug|Any CPU.Build.0 = Debug|Any CPU
301304
{F2985136-DCB2-492F-A66D-32968A0266F1}.Release|Any CPU.ActiveCfg = Release|Any CPU
302305
{F2985136-DCB2-492F-A66D-32968A0266F1}.Release|Any CPU.Build.0 = Release|Any CPU
303-
{37F2A7AD-FABE-4AEA-AB3D-CE8543D8134E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
304-
{37F2A7AD-FABE-4AEA-AB3D-CE8543D8134E}.Debug|Any CPU.Build.0 = Debug|Any CPU
305-
{37F2A7AD-FABE-4AEA-AB3D-CE8543D8134E}.Release|Any CPU.ActiveCfg = Release|Any CPU
306-
{37F2A7AD-FABE-4AEA-AB3D-CE8543D8134E}.Release|Any CPU.Build.0 = Release|Any CPU
307306
{5C9B8805-6489-41C5-8FE6-195599C6497F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
308307
{5C9B8805-6489-41C5-8FE6-195599C6497F}.Debug|Any CPU.Build.0 = Debug|Any CPU
309308
{5C9B8805-6489-41C5-8FE6-195599C6497F}.Release|Any CPU.ActiveCfg = Release|Any CPU
@@ -416,6 +415,14 @@ Global
416415
{563654BA-4C05-4EA2-91D3-28A14723B7D5}.Debug|Any CPU.Build.0 = Debug|Any CPU
417416
{563654BA-4C05-4EA2-91D3-28A14723B7D5}.Release|Any CPU.ActiveCfg = Release|Any CPU
418417
{563654BA-4C05-4EA2-91D3-28A14723B7D5}.Release|Any CPU.Build.0 = Release|Any CPU
418+
{8197A037-FF9E-4660-8C6D-2F722FEA0C10}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
419+
{8197A037-FF9E-4660-8C6D-2F722FEA0C10}.Debug|Any CPU.Build.0 = Debug|Any CPU
420+
{8197A037-FF9E-4660-8C6D-2F722FEA0C10}.Release|Any CPU.ActiveCfg = Release|Any CPU
421+
{8197A037-FF9E-4660-8C6D-2F722FEA0C10}.Release|Any CPU.Build.0 = Release|Any CPU
422+
{046419A7-C60D-40FF-AD7E-2BAE461B7CE5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
423+
{046419A7-C60D-40FF-AD7E-2BAE461B7CE5}.Debug|Any CPU.Build.0 = Debug|Any CPU
424+
{046419A7-C60D-40FF-AD7E-2BAE461B7CE5}.Release|Any CPU.ActiveCfg = Release|Any CPU
425+
{046419A7-C60D-40FF-AD7E-2BAE461B7CE5}.Release|Any CPU.Build.0 = Release|Any CPU
419426
EndGlobalSection
420427
GlobalSection(SolutionProperties) = preSolution
421428
HideSolutionNode = FALSE
@@ -449,7 +456,6 @@ Global
449456
{18CE822A-A46D-494B-BBFC-C52EF1D048BE} = {8E48BD4D-5178-47E1-A850-76B5DA2EB9D0}
450457
{04CDAFD7-7EC6-43A0-AC42-84FFD56E78B6} = {34430BD4-4D66-4FE6-8076-51B87B4FBCD4}
451458
{F2985136-DCB2-492F-A66D-32968A0266F1} = {34430BD4-4D66-4FE6-8076-51B87B4FBCD4}
452-
{37F2A7AD-FABE-4AEA-AB3D-CE8543D8134E} = {34430BD4-4D66-4FE6-8076-51B87B4FBCD4}
453459
{5C9B8805-6489-41C5-8FE6-195599C6497F} = {34430BD4-4D66-4FE6-8076-51B87B4FBCD4}
454460
{F86DCF03-7C4D-40FE-91D2-6206D532DEFD} = {34430BD4-4D66-4FE6-8076-51B87B4FBCD4}
455461
{9A3072A5-FC2D-4183-9420-DE5DE323441E} = {8E48BD4D-5178-47E1-A850-76B5DA2EB9D0}
@@ -486,6 +492,8 @@ Global
486492
{68528C1C-B163-49A6-A19D-24E10F500F90} = {1F4F7A9B-FD3B-495F-86D0-89A7DEA2128C}
487493
{3055F932-0D1E-4823-A03A-7B62C7639BDA} = {1F4F7A9B-FD3B-495F-86D0-89A7DEA2128C}
488494
{4C362C30-C4B1-4C4B-A545-DBF67C7E9153} = {1F4F7A9B-FD3B-495F-86D0-89A7DEA2128C}
495+
{8197A037-FF9E-4660-8C6D-2F722FEA0C10} = {34430BD4-4D66-4FE6-8076-51B87B4FBCD4}
496+
{046419A7-C60D-40FF-AD7E-2BAE461B7CE5} = {34430BD4-4D66-4FE6-8076-51B87B4FBCD4}
489497
EndGlobalSection
490498
GlobalSection(ExtensibilityGlobals) = postSolution
491499
SolutionGuid = {FC44ACA9-AEA3-4EE6-881C-2E08ED281B5F}

0 commit comments

Comments
 (0)