SOLUTION 2 — Unblock ALL files in your project (the batch way)
Sometimes Git, ZIP, or downloading from the internet marks multiple files.
Run this PowerShell command inside your project folder:
Get-ChildItem -Recurse | Unblock-File
This removes the “Mark of the Web” from ALL files in the project.
Rebuild → fixed.