-
Notifications
You must be signed in to change notification settings - Fork 533
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add NugetPackageId Metadata to TaskItems #9559
base: main
Are you sure you want to change the base?
Conversation
@@ -192,6 +208,14 @@ void Extract ( | |||
string resDir = Path.Combine (importsDir, "res"); | |||
string resDirArchive = Path.Combine (resDir, "..", "res.zip"); | |||
string assetsDir = Path.Combine (importsDir, "assets"); | |||
string nuGetPackageId = assemblyItem.GetMetadata (NuGetPackageId) ?? string.Empty; | |||
string nuGetPackageVersion = assemblyItem.GetMetadata (NuGetPackageVersion) ?? string.Empty; | |||
Console.WriteLine ($"{assemblyPath}: {nuGetPackageId} {nuGetPackageVersion}"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should it use Log.LogDebugMessage
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Its draft, I'll be cleaning this up later.
@@ -1072,11 +1072,12 @@ To use a custom JDK path for a command line build, set the 'JavaSdkDirectory' MS | |||
{1} - NuGet package version</comment> | |||
</data> | |||
<data name="XA0141" xml:space="preserve"> | |||
<value>NuGet package '{0}' version '{1}' contains a shared library '{2}' which is not correctly aligned. See https://developer.android.com/guide/practices/page-sizes for more details</value> | |||
<value>'{2}' from NuGet package '{0}' version '{1}' contains a shared library '{3}' which is not correctly aligned. You may wish to inform the creators of the Library about this issue. See https://developer.android.com/guide/practices/page-sizes for more details.</value> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jonpryor can you remember me how we wanted to change this message? I forgot to take notes.
No description provided.