-
Notifications
You must be signed in to change notification settings - Fork 13
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
femto upgrade #69
Comments
Hello, just giving my opinion. For me, Femto is for working with the Currently, you can update your .NET dependencies using paket or dotnet. Then you can run Also femto would need to detect if you are using paket or dotnet to manage your .NET dependencies and call the corresponding one like it does for npm/yarn. |
@MangelMaxime Actually Femto does interact with your dotnet dependencies when you run @brettrowberry An A PR would be really appreciated 🙏 a lot of the work is already done here (finding paket and invoking it) so only adding the command line arg, executing paket upgrade and then |
This comment has been minimized.
This comment has been minimized.
That makes sense. So a |
And it would only be possible if paket is used, not nuget. |
@brettrowberry Yes only for paket. Unless of course you are feeling extremely adventurous and want to implement the functionality for Femto to do nuget update 😄 No just kidding, this would be like opening a pandora's box |
It would be strange if In theory, we just need to execute |
@MangelMaxime I don't think dotnet has an |
Oops didn't know that. 😅 Then we should just warn that it is not supported in the console because the user doesn't use paket. Just so he knows why :) <- Thinking about future me 😂 |
lol 😂 yeah absolutely: if we can't find paket then we simply say this is a paket-only feature |
Anybody want to pair on this? |
Would it make sense for there to be a
femto upgrade
that basically callsdotnet paket upgrade && yarn upgrade
?The text was updated successfully, but these errors were encountered: