-
Notifications
You must be signed in to change notification settings - Fork 525
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
[wip] fix 2263: Framework restriction is lost for global build folder #2272
Conversation
use group framework restrictions to decide if a package is global or fw-specific
…ed to something concrete
src/Paket.Core/Files/ProjectFile.fs
Outdated
@@ -1079,7 +1079,7 @@ module ProjectFile = | |||
|
|||
let importTargets = defaultArg installSettings.ImportTargets true | |||
|
|||
let allFrameworks = applyRestrictionsToTargets ((thirdOf3 kv.Value)) KnownTargetProfiles.AllProfiles | |||
let allFrameworks = applyRestrictionsToTargets ((thirdOf3 kv.Value)) (KnownTargetProfiles.AllDotNetStandardProfiles @ KnownTargetProfiles.AllDotNetProfiles) |
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.
PLEASE REVIEW: I think we don't care about runtimes when deciding whether to install a .targets / .props, is that correct?
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.
ref #2238
Test failure:
The issue is that during these unit tests, the paths are already relative: BUT during a real install, they are absolute: |
I HAVENT ACTUALLY VERIFIED THE CHANGES
@forki was the baseline update ok? especially https://github.com/fsprojects/Paket/pull/2272/files#diff-c8216d6e9932fe764472cecc1af0914cR50 |
I dunno ;-)
These whole targets file things are confusing
Am 24.04.2017 10:33 vorm. schrieb "Lukas Rieger" <[email protected]>:
… @forki <https://github.com/forki> was the baseline update ok? especially
https://github.com/fsprojects/Paket/pull/2272/files#diff-
c8216d6e9932fe764472cecc1af0914cR50
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#2272 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AADgNBK4iZwyn5nX6OQUnQ7c_c2jbd8lks5rzF5dgaJpZM4NFkMA>
.
|
that's why the PR was still tagged [WIP] =) |
ref #2263