-
Notifications
You must be signed in to change notification settings - Fork 48
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
[Bug]: Missing "Date modified" causes dotnet-pack to fail #57
Comments
IIRC, modified dates are part of the filesystem metadata, and not stored in the file itself. Worth looking into from that angle, anyway. |
It looks like the bug was caused by nuget itself and should be fixed now. More information can also be found here. Since I cannot, would someone be so kind to create a new version to address the issue? |
Looking at Autofac.Extensions.DependencyInjection v5.0.0 tag, it appears it was built/packaged with the release version of .NET Core 3.0 SDK, not with the preview version. This comment indicates the issue was fixed in this version. I just kicked off an AppVeyor build of the |
At least from a cursory test it appears this is fixed just by building it again, even though no code has changed, nor has the pinned SDK. @alsami can you verify that
|
Looks good now mate! Yeah, sadly it's not possible this problem will only concern users, who included that package in another package. For everyone else it shouldn't be a problem. |
Rebuilt and pushed as 5.0.1. |
Hey guys,
I update some dependencies in one of the projects at work and wanted to create a new version of that project which uses
Autofac.Extensions.DependencyInjection
.When I tried running
dotnet pack
I received that weird error:I googled a litttle bit and found out that this might be related to some assembly missing the modified date and indeed, the latest version does miss this date.
Downgrading again to version 4.4.0 fixed that issue for me.
Anyone knows how this happened and how it can be fixed? We might want to create a new release with a fix and update dependent Autofac-Libs like
Autofac.AspNetCore.Multitenant
.Best regards,
Sami
The text was updated successfully, but these errors were encountered: