-
Notifications
You must be signed in to change notification settings - Fork 816
Update branding to 3.0.1 #2392
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
Update branding to 3.0.1 #2392
Conversation
dougbu
commented
Sep 24, 2019
- aspnet/AspNetCore-Internal#3153
02fb36f
to
353a780
Compare
@@ -20,7 +39,8 @@ | |||
--> | |||
<UseLatestPackageReferences Condition=" '$(UseLatestPackageReferences)' == '' AND '$(IsServicingBuild)' != 'true' ">true</UseLatestPackageReferences> | |||
<UseLatestPackageReferences Condition=" '$(UseLatestPackageReferences)' == '' AND '$(IsImplementationProject)' != 'true' ">true</UseLatestPackageReferences> | |||
<UseLatestPackageReferences Condition=" '$(UseLatestPackageReferences)' == '' AND '$(IsImplementationProject)' == 'true' AND ( '$(IsServicingBuild)' != 'true' OR '$(IsPackable)' == 'true' ) ">true</UseLatestPackageReferences> | |||
<UseLatestPackageReferences | |||
Condition=" '$(UseLatestPackageReferences)' == '' AND '$(IsImplementationProject)' == 'true' AND '$(IsPackable)' == 'true' ">true</UseLatestPackageReferences> |
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.
Similar to dotnet/aspnetcore#14404, the changes in this file are all about nits. The change here is again about the redundancy of checking '$(IsServicingBuild)' != 'true'
twice.
Not good. Even a seemingly-successful leg of the build (Ubuntu 16.04 Debug) hit package resolution conflicts referring to projects elsewhere in the repo.
Not sure where the 3.0.0 versions is coming from. Checking whether this reproduces locally… |
- aspnet/AspNetCore-Internal#3153
- add `$(IgnorePackageBaselines)` property nits: - add general comment in ResolveReferences.targets - remove `$(RestoreSources)` settings
- no changes in known frameworks, targeting pack features, et cetera nits: - remove downlevel patches from PatchConfig.props - remove extra checks and whitespace from `Condition`s in ResolveReferences.targets - copy general comment from AspNetCore's ResolveReferences.targets
6f5f9c3
to
a2777af
Compare
- do not pack Microsoft.Internal.Extensions.Refs when servicing (either) - use `$(IsPackable)` property to clarify conditions
/bump reviewers |