Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,18 @@ private bool IsAssemblyIncompatible(string assyPath, MinimalMarshalingTypeCompat
{
using FileStream file = new FileStream(assyPath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
using PEReader peReader = new PEReader(file);
MetadataReader mdtReader = peReader.GetMetadataReader();
MetadataReader mdtReader;

try
{
mdtReader = peReader.GetMetadataReader();
}
catch(InvalidOperationException ex)
{
// If the DLL does not have metadata, the previous call will fail with InvalidOperationException.
Log.LogMessage(MessageImportance.Low, string.Format("Cannot read metadata in file {0}: {1}.", assyPath, ex.Message));
return false;
}

foreach(CustomAttributeHandle attrHandle in mdtReader.CustomAttributes)
{
Expand Down