Closed MangelMaxime closed 7 years ago
Yes
obj/
directory.Hello @matthid you can find the project here.
To summarize I go the following layout:
/.paket/paket.exe
/paket.lock
/paket.dependencies
/src/Fulma/paket.reference
/src/Fulma/Fulma.fsproj
Here is my Fulma.fsproj.netstandard2.0.references file.
And here is my full obj folder: obj.zip
There is no warning output during my build process by paket. output.txt
Ah good, will try to reproduce later
Ok can you tell me for idiots what I need to do :)
Assume I don't have any idea of fable and just cloned your repository, how do I reproduce the bug?
Problem is all your files look correct, but from your error description it looks like they are never actually read in the build process. Something is wrong there.
OK I noticed something: Your Paket.Restore.targets
is not the latest one and paket install
didn't update it either. Now I have two questions:
Ah OK its because I removed the old file when only netstandard20 is there (We discussed that it is safe to assume it only is required for fable compat when using netstandard16). Maybe we need to revisit that for at least a couple of versions... (until we can assume people have updated their targets files?)
/cc @forki because of compat concerns
I always tried to keep paket backwards compatibility with the old targets files. It's not easy,...
Am 28.08.2017 18:35 schrieb "Matthias Dittrich" notifications@github.com:
Ah OK its because I removed the old file when only netstandard20 is there (We discussed that it is safe to assume it only is required for fable compat when using netstandard16). Maybe we need to revisit that for at least a couple of versions... (until we can assume people have updated their targets files?)
/cc @forki https://github.com/forki because of compat concerns
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/fsprojects/Paket/issues/2680#issuecomment-325405301, or mute the thread https://github.com/notifications/unsubscribe-auth/AADgNJm0ytq2DhgFrLw3U6wy0Ltpv8MTks5scuxlgaJpZM4PEhGB .
Will be fixed with https://github.com/fsprojects/Paket/pull/2684, thanks for reporting and testing the alpha!
Thanks for the quick fix :)
I tested with 5.92.0-beta001
and it's working. 👏
I just updating one of my project to use NETStandard 2.0.
When using paket
5.92.0-alpha001
I got this project.assets.json which is wrong. It does not contains my dependencies.If I use paket
5.91.0
, then I got this file.As you can see the first file is missing a lot of deps like
Fable.Core
.Here is my paket.dependencies:
Paket.references:
Please tell me if you need more infos.