IL2035: Unresolved assembly in 'DynamicDependencyAttribute'

Cause

The value passed to the assemblyName parameter of a DynamicDependencyAttribute could not be resolved.

Example

// IL2035: Unresolved assembly 'NonExistentAssembly' in 'DynamicDependencyAttribute'
[DynamicDependency("Method", "Type", "NonExistentAssembly")]
public void TestMethod()
{
}