Post
Follow.NET analysis issue with .NET extension folder location
We have observed multiple cases with .NET application where .NET analyzer getting a crash if the extension folder is available on a network drive.
To use the network drive for a .NET extension, we have to allow the .NET framework to load assemblies from a remote location.
To do that, we need to enable the loadFromRemoteSources parameter in the machine.config file.
<runtime/> tag need to replace with
<runtime><loadFromRemoteSources enabled="true"/></runtime> in machine.config file of the analysis macine.
The path for the machine.config file is-
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config\machine.config.
Its a limitation with the .NET analyzer and we will add it in the documentation.
Please sign in to leave a comment.