Skip to content

ci: re-trigger checks for PR #489

f53f023
Select commit
Loading
Failed to load commit list.
Merged

feat: P1-P5 Custom Controls Framework Drop-in Replacement for Web Forms Controls #489

ci: re-trigger checks for PR #489
f53f023
Select commit
Loading
Failed to load commit list.
GitHub Advanced Security / CodeQL failed Mar 23, 2026 in 5s

5 new alerts including 1 high severity security vulnerability

New alerts in code changed by this pull request

Security Alerts:

  • 1 high

Other Alerts:

  • 2 warnings
  • 2 notes

Alerts not introduced by this pull request might have been detected because the code changes were too large.

See annotations below for details.

View all branch alerts.

Annotations

Check failure on line 4 in samples/DepartmentPortal/Web.config

See this annotation in the file changed.

Code scanning / CodeQL

Creating an ASP.NET debug binary may reveal sensitive information High

The 'debug' flag is set for an ASP.NET configuration file.

Check warning on line 173 in src/BlazorWebFormsComponents.Test/CustomControls/DataBoundWebControlTests.razor

See this annotation in the file changed.

Code scanning / CodeQL

Useless assignment to local variable Warning test

This assignment to
cut
is useless, since its value is never read.

Check warning on line 117 in src/BlazorWebFormsComponents/CustomControls/TemplatedWebControl.cs

See this annotation in the file changed.

Code scanning / CodeQL

Useless assignment to local variable Warning

This assignment to
sequence
is useless, since its value is never read.

Check notice on line 80 in src/BlazorWebFormsComponents.Analyzers/FindControlUsageAnalyzer.cs

See this annotation in the file changed.

Code scanning / CodeQL

Missed opportunity to use Where Note

This foreach loop
implicitly filters its target sequence
- consider filtering the sequence explicitly using '.Where(...)'.

Check notice on line 10 in src/BlazorWebFormsComponents.Test/CustomControls/TestComponents/SimpleDataList.cs

See this annotation in the file changed.

Code scanning / CodeQL

Missed 'readonly' opportunity Note test

Field '_items' can be 'readonly'.