Skip to content

Ignore by default .resources assembly load exceptions #26

@ioancrisan

Description

@ioancrisan

Add:
appDomain.AssemblyResolve += (sender, args) =>
{
var assemblyFileName = args.Name.Substring(0, args.Name.IndexOf(","));
if (assemblyFileName.EndsWith(".resources"))
{
return null;
}
// do other stuff (also return null?)
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions