Support for metadata not in .netCore nuget package
See original GitHub issueI discovered that the .netCore Nuget package contains no PutObjectAsync method with metadata in ObjectOperations.cs
To fix this issue I checked out the git repo and used the sources directly. However there the method signature is:
public async Task PutObjectAsync(string bucketName, string objectName, string fileName, string contentType = null, CancellationToken cancellationToken = default(CancellationToken), Dictionary<string, string> metaData = null)
In the API.md however the metaData argument comes before the CancellationToken.
Issue Analytics
- State:
- Created 6 years ago
- Reactions:1
- Comments:6 (2 by maintainers)
Top Results From Across the Web
Unable to find Metadata of nuget package
I have a nuget package present in a local path. I want to add the reference of that nuget package. But everytime I...
Read more >The package version had build metadata. We do not ...
This worked fine locally (VS 2017 15.7.5), but in VSTS this error starts showing up. We do use VSTS Package Management because we...
Read more >adding Netstandard nuget package to another ...
adding Netstandard nuget package to another Netstandard project cause "Unable to find metadata of Microsoft.NETCore.
Read more >Microsoft.AspNetCore.Metadata 7.0.10
Version Downloads Last updated
8.0.0‑preview.7.23375.9 3,807 11 days ago
8.0.0‑preview.6.23329.11 13,111 a month ago
8.0.0‑preview.5.23302.2 9,413 2 months ago
Read more >PackageReference should support ...
Adding a package reference to a development dependency does not add the <PrivateAssets>all<PrivateAssets metadata. Repro: 1 - Create a .NETCore/ ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@Hermain and @ondrejtomcik , nuget package has been updated for PutObjectAsync with metadata
Will look at it soon. Thanks for filing this issue.