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