Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPranav K <prkrishn@hotmail.com>2022-01-29 03:20:42 +0300
committerGitHub <noreply@github.com>2022-01-29 03:20:42 +0300
commit112a0de1442876fc1754a2fa33d4bbb64f8e5af2 (patch)
treeb381054972d0b6ae38a76645d6d529449ff3ae90 /AspNetCore.sln
parent4f84af885fb1a2ba467f0d9ad3579e6827c990a4 (diff)
Fork component analyzers (#39796)
* Fork component analyzers This is an attempt to resolve the open https://github.com/dotnet/aspnetcore/pull/30102 PR. Microsoft.AspNetCore.Components.Analyzers ships as a part of the .NET SDK and the analysis applies to all apps starting in .NET 3.1 or newer. Adding new analyzers to this assembly was problematic since it would result in new warnings in existing apps when users updated the SDK. This PR forks the Component.Analyzers to produce a new Components.SDKAnalyzers analyzer assembly. Components.Analyzers is also added to the targeting pack so it allows us to produce TFM specific analysis. * Apply suggestions from code review Co-authored-by: Tanay Parikh <TanayParikh@users.noreply.github.com> Co-authored-by: Tanay Parikh <TanayParikh@users.noreply.github.com>
Diffstat (limited to 'AspNetCore.sln')
-rw-r--r--AspNetCore.sln44
1 files changed, 44 insertions, 0 deletions
diff --git a/AspNetCore.sln b/AspNetCore.sln
index 453c1dc25f..6cccef647f 100644
--- a/AspNetCore.sln
+++ b/AspNetCore.sln
@@ -1650,6 +1650,14 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.AspNetCore.Server
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IIS.ShadowCopy.Tests", "src\Servers\IIS\IIS\test\IIS.ShadowCopy.Tests\IIS.ShadowCopy.Tests.csproj", "{93D3CC76-9FA9-4198-B49D-54BA918105EE}"
EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SDK-Analyzers", "SDK-Analyzers", "{6C06163A-80E9-49C1-817C-B391852BA563}"
+EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Components", "Components", "{CC45FA2D-128B-485D-BA6D-DFD9735CB3C3}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.AspNetCore.Components.SdkAnalyzers", "src\Tools\SDK-Analyzers\Components\src\Microsoft.AspNetCore.Components.SdkAnalyzers.csproj", "{825BCF97-67A9-4834-B3A8-C3DC97A90E41}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.AspNetCore.Components.SdkAnalyzers.Tests", "src\Tools\SDK-Analyzers\Components\test\Microsoft.AspNetCore.Components.SdkAnalyzers.Tests.csproj", "{DC349A25-0DBF-4468-99E1-B95C22D3A7EF}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -9926,6 +9934,38 @@ Global
{93D3CC76-9FA9-4198-B49D-54BA918105EE}.Release|x64.Build.0 = Release|Any CPU
{93D3CC76-9FA9-4198-B49D-54BA918105EE}.Release|x86.ActiveCfg = Release|Any CPU
{93D3CC76-9FA9-4198-B49D-54BA918105EE}.Release|x86.Build.0 = Release|Any CPU
+ {825BCF97-67A9-4834-B3A8-C3DC97A90E41}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {825BCF97-67A9-4834-B3A8-C3DC97A90E41}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {825BCF97-67A9-4834-B3A8-C3DC97A90E41}.Debug|arm64.ActiveCfg = Debug|Any CPU
+ {825BCF97-67A9-4834-B3A8-C3DC97A90E41}.Debug|arm64.Build.0 = Debug|Any CPU
+ {825BCF97-67A9-4834-B3A8-C3DC97A90E41}.Debug|x64.ActiveCfg = Debug|Any CPU
+ {825BCF97-67A9-4834-B3A8-C3DC97A90E41}.Debug|x64.Build.0 = Debug|Any CPU
+ {825BCF97-67A9-4834-B3A8-C3DC97A90E41}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {825BCF97-67A9-4834-B3A8-C3DC97A90E41}.Debug|x86.Build.0 = Debug|Any CPU
+ {825BCF97-67A9-4834-B3A8-C3DC97A90E41}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {825BCF97-67A9-4834-B3A8-C3DC97A90E41}.Release|Any CPU.Build.0 = Release|Any CPU
+ {825BCF97-67A9-4834-B3A8-C3DC97A90E41}.Release|arm64.ActiveCfg = Release|Any CPU
+ {825BCF97-67A9-4834-B3A8-C3DC97A90E41}.Release|arm64.Build.0 = Release|Any CPU
+ {825BCF97-67A9-4834-B3A8-C3DC97A90E41}.Release|x64.ActiveCfg = Release|Any CPU
+ {825BCF97-67A9-4834-B3A8-C3DC97A90E41}.Release|x64.Build.0 = Release|Any CPU
+ {825BCF97-67A9-4834-B3A8-C3DC97A90E41}.Release|x86.ActiveCfg = Release|Any CPU
+ {825BCF97-67A9-4834-B3A8-C3DC97A90E41}.Release|x86.Build.0 = Release|Any CPU
+ {DC349A25-0DBF-4468-99E1-B95C22D3A7EF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {DC349A25-0DBF-4468-99E1-B95C22D3A7EF}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {DC349A25-0DBF-4468-99E1-B95C22D3A7EF}.Debug|arm64.ActiveCfg = Debug|Any CPU
+ {DC349A25-0DBF-4468-99E1-B95C22D3A7EF}.Debug|arm64.Build.0 = Debug|Any CPU
+ {DC349A25-0DBF-4468-99E1-B95C22D3A7EF}.Debug|x64.ActiveCfg = Debug|Any CPU
+ {DC349A25-0DBF-4468-99E1-B95C22D3A7EF}.Debug|x64.Build.0 = Debug|Any CPU
+ {DC349A25-0DBF-4468-99E1-B95C22D3A7EF}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {DC349A25-0DBF-4468-99E1-B95C22D3A7EF}.Debug|x86.Build.0 = Debug|Any CPU
+ {DC349A25-0DBF-4468-99E1-B95C22D3A7EF}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {DC349A25-0DBF-4468-99E1-B95C22D3A7EF}.Release|Any CPU.Build.0 = Release|Any CPU
+ {DC349A25-0DBF-4468-99E1-B95C22D3A7EF}.Release|arm64.ActiveCfg = Release|Any CPU
+ {DC349A25-0DBF-4468-99E1-B95C22D3A7EF}.Release|arm64.Build.0 = Release|Any CPU
+ {DC349A25-0DBF-4468-99E1-B95C22D3A7EF}.Release|x64.ActiveCfg = Release|Any CPU
+ {DC349A25-0DBF-4468-99E1-B95C22D3A7EF}.Release|x64.Build.0 = Release|Any CPU
+ {DC349A25-0DBF-4468-99E1-B95C22D3A7EF}.Release|x86.ActiveCfg = Release|Any CPU
+ {DC349A25-0DBF-4468-99E1-B95C22D3A7EF}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
@@ -10742,6 +10782,10 @@ Global
{E0BE6B86-F8DB-405D-AC05-78C8C9D3857D} = {C3722C5D-E159-4AB3-AF60-769185B31B47}
{8EB0B983-8851-4565-B92F-366F1B126E61} = {C3722C5D-E159-4AB3-AF60-769185B31B47}
{93D3CC76-9FA9-4198-B49D-54BA918105EE} = {41BB7BA4-AC08-4E9A-83EA-6D587A5B951C}
+ {6C06163A-80E9-49C1-817C-B391852BA563} = {0B200A66-B809-4ED3-A790-CB1C2E80975E}
+ {CC45FA2D-128B-485D-BA6D-DFD9735CB3C3} = {6C06163A-80E9-49C1-817C-B391852BA563}
+ {825BCF97-67A9-4834-B3A8-C3DC97A90E41} = {CC45FA2D-128B-485D-BA6D-DFD9735CB3C3}
+ {DC349A25-0DBF-4468-99E1-B95C22D3A7EF} = {CC45FA2D-128B-485D-BA6D-DFD9735CB3C3}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {3E8720B3-DBDD-498C-B383-2CC32A054E8F}