File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
MetadataProcessor.Console Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ public void Compile(
100
100
catch ( Exception )
101
101
{
102
102
System . Console . Error . WriteLine (
103
- "Unable to compile output assembly file '{0 }' - check parse command results." , fileName ) ;
103
+ $ "Unable to compile output assembly file '{ fileName } ' - check parse command results.") ;
104
104
throw ;
105
105
}
106
106
}
Original file line number Diff line number Diff line change @@ -440,7 +440,8 @@ private HashSet<MetadataToken> BuildDependencyList(MetadataToken token)
440
440
if ( i . Operand is MethodReference ||
441
441
i . Operand is FieldReference ||
442
442
i . Operand is TypeDefinition ||
443
- i . Operand is TypeSpecification )
443
+ i . Operand is TypeSpecification ||
444
+ i . Operand is TypeReference )
444
445
{
445
446
set . Add ( ( ( IMetadataTokenProvider ) i . Operand ) . MetadataToken ) ;
446
447
}
You can’t perform that action at this time.
0 commit comments