New to Telerik UI for WinForms? Download free 30-day trial

Unblock .resx Files Downloaded in Telerik WinForms Source Code

Environment

Product Version Product Author
2023.2.718 UI for WinForms Desislava Yordanova

Description

When the Telerik WinForms source code is downloaded, in some situations .resx files may be blocked with an error and the projects cannot be built.

Zipped Telerik Source Code

unblock-resx-files-downloaded-in-source-code 001

Once the source code is downloaded and unzipped, if you try to build the application, you may observe the following build errors:

unblock-resx-files-downloaded-in-source-code 002

Solution

To unblock those files there is a simple solution for multiple-recursive unblocking:

1. Use 'Open in Terminal' item of the solution in 'Solution Explorer'.

unblock-resx-files-downloaded-in-source-code 003

2. Enter the next commands in opened 'Developer PowerShell terminal':

Get-ChildItem *.resx -Recurse | Unblock-File

unblock-resx-files-downloaded-in-source-code 004

3. The command will complete without a confirmation.

4. The projects in the solution now can be built.

See Also

In this article