Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion eng/SourceBuildPrebuiltBaseline.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,11 @@
<UsagePattern IdentityGlob="Microsoft.DiaSymReader/*2.0.0*" />

<!-- Transitive dependency of Roslyn dependencies. -->
<UsagePattern IdentityGlob="System.Text.Json/8.0.0*" />
<UsagePattern IdentityGlob="System.Text.Encodings.Web/8.0.0*" />

<!-- Pinned to circumvent CG alert from Roslyn -->
<UsagePattern IdentityGlob="System.Text.Json/8.0.5*" />

<!-- Transitive dependency of System.Security.Cryptography.Pkcs.5.0.*. -->
<UsagePattern IdentityGlob="System.Formats.Asn1/6.0.0" />
</IgnorePatterns>
Expand Down
1 change: 1 addition & 0 deletions eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@
<!-- Build tool dependencies -->
<MicrosoftVSSDKBuildToolsVersion>15.9.3032</MicrosoftVSSDKBuildToolsVersion>
<RepoTasksSystemSecurityCryptographyXmlVersion>8.0.0</RepoTasksSystemSecurityCryptographyXmlVersion>
<AnalyzersSystemTextJsonVersion>8.0.5</AnalyzersSystemTextJsonVersion>
<!-- Stable dotnet/corefx packages no longer updated for .NET Core 3 -->
<MicrosoftCSharpVersion>4.7.0</MicrosoftCSharpVersion>
<MicrosoftWin32RegistryVersion>5.0.0</MicrosoftWin32RegistryVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,15 @@
<RootNamespace>Microsoft.AspNetCore.Analyzers</RootNamespace>
<SuppressNullableAttributesImport>true</SuppressNullableAttributesImport>
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
<DisablePackageReferenceRestrictions>true</DisablePackageReferenceRestrictions>
</PropertyGroup>

<ItemGroup>
<Reference Include="Microsoft.CodeAnalysis.CSharp" PrivateAssets="All" />
<Reference Include="Microsoft.CodeAnalysis.ExternalAccess.AspNetCore" />

<PackageReference Include="System.Text.Json" Version="$(AnalyzersSystemTextJsonVersion)" />

<InternalsVisibleTo Include="Microsoft.AspNetCore.App.Analyzers.Test" />
<InternalsVisibleTo Include="Microsoft.AspNetCore.App.CodeFixes" />
</ItemGroup>
Expand Down
Loading