C# Visual Studio Error 5 Couldn’t process file Reports\ApplicationForLoans.resx due to its being in the Internet or Restricted zone or having the mark of the web on the file. Remove the mark of the web if you want to process these files.

SOLUTION 2Unblock 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 theMark of the Webfrom ALL files in the project.

Rebuildfixed.