You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Log.LogMessage(MessageImportance.Low,"Skipping Reference '{0}' because it comes from NuGet package '{1}' (handled via PackageReferences)",reference.ItemSpec,reference.GetMetadata("NuGetPackageId"));
90
+
// Logs will be emitted for these references when processing the PackageReferences
94
91
continue;
95
92
}
96
93
@@ -108,25 +105,15 @@ public override bool Execute()
// Ignore transitive project references since the project doesn't have direct control over them.
172
-
Log.LogMessage(MessageImportance.Low,"Skipping ProjectReference '{0}' because it is a transitive dependency (NuGetPackageId='{1}')",projectReference.ItemSpec,projectReference.GetMetadata("NuGetPackageId"));
Log.LogMessage(MessageImportance.Low,"Skipping PackageReference '{0}' because it has no compile-time assemblies or build files (likely an Analyzer, tool, or content-only package)",packageReference.ItemSpec);
186
+
Log.LogMessage(MessageImportance.Low,"Skipping PackageReference '{0}' because it has no compile-time assemblies (likely an Analyzer, tool, or content-only package)",packageReference.ItemSpec);
205
187
continue;
206
188
}
207
189
@@ -215,7 +197,6 @@ public override bool Execute()
215
197
continue;
216
198
}
217
199
218
-
Log.LogMessage(MessageImportance.Low,"Including PackageReference '{0}' with {1} compile-time assembly(ies)",packageReference.ItemSpec,packageInfo.CompileTimeAssemblies.Count);
0 commit comments