@@ -287,7 +287,7 @@ public IList<string> Merge (TaskLoggingHelper log, TypeDefinitionCache cache, Li
287
287
string . IsNullOrEmpty ( VersionName ) ? "1.0" : VersionName ) ;
288
288
}
289
289
290
- app = CreateApplicationElement ( manifest , applicationClass , subclasses , cache ) ;
290
+ app = CreateApplicationElement ( log , manifest , applicationClass , subclasses , cache ) ;
291
291
292
292
if ( app . Attribute ( androidNs + "label" ) == null && ! string . IsNullOrEmpty ( ApplicationLabel ) )
293
293
app . SetAttributeValue ( androidNs + "label" , ApplicationLabel ) ;
@@ -567,7 +567,7 @@ Func<TypeDefinition, string, TypeDefinitionCache, int, XElement> GetGenerator (T
567
567
return null ;
568
568
}
569
569
570
- XElement CreateApplicationElement ( XElement manifest , string applicationClass , List < TypeDefinition > subclasses , TypeDefinitionCache cache )
570
+ XElement CreateApplicationElement ( TaskLoggingHelper log , XElement manifest , string applicationClass , List < TypeDefinition > subclasses , TypeDefinitionCache cache )
571
571
{
572
572
var application = manifest . Descendants ( "application" ) . FirstOrDefault ( ) ;
573
573
@@ -579,6 +579,7 @@ XElement CreateApplicationElement (XElement manifest, string applicationClass, L
579
579
foreach ( var assemblyPath in Assemblies ) {
580
580
var assembly = Resolver . GetAssembly ( assemblyPath ) ;
581
581
if ( assembly == null ) {
582
+ log . LogDebugMessage ( $ "Assembly '{ assemblyPath } ' not found.") ;
582
583
continue ;
583
584
}
584
585
0 commit comments