.NET Developers should be using dotnet-outdated to update their project's references

Поделиться
HTML-код
  • Опубликовано: 25 фев 2024
  • .NET Developers should be using dotnet-outdated to update their project's references github.com/dotnet-outdated/do...
  • НаукаНаука

Комментарии • 69

  • @TheBuzzSaw
    @TheBuzzSaw 2 месяца назад +59

    "You can't just blindly update stuff."
    YOU UNDERESTIMATE MY POWER.

  • @msdevel
    @msdevel 2 месяца назад +10

    Thank you for your comment on the previous video regarding my comment on technology debt. This is a great corrective to that. Anyway, after 18 years of programming in C#, I have come to the conclusion to be like a cowboy and update even blindly and wait for what tests and staging will reveal as I collect technology debt. I have seen many destroyed projects and companies because they did not care about updating anything and then the cost of the project increased to such an extent that it could not be saved.

  • @takistewart3404
    @takistewart3404 2 месяца назад +27

    Embarrassed that I'd never heard of dotnet-outdated

  • @90vackoo
    @90vackoo 2 месяца назад +4

    Thanks, we are in the process of updating our .net6 projects, the timing couldn't have been better. Never knew about these tools much appreciated! 😊

  • @PranayDora
    @PranayDora 2 месяца назад +1

    Had no idea such a marvel existed! Feels i was livin' under a rock all this while! Thanks for sharing!

  • @phantompooper
    @phantompooper 2 месяца назад

    I just started upgrading projects this week and have been running into some problems using Microsoft's .Net upgrade assistant. This is something I will definitely check out! Thanks!

  • @hemant-sathe
    @hemant-sathe 2 месяца назад

    I am absolutely awed. Didn’t know about this and it’s so helpful. My current project team is struggling with the automated scan tools implemented across organisation which reports every vulnerability scan. This is like God send. We host our azure functions in aks. The base images we get have vulnerabilities in the extension bundles. These eventually are updated by Microsoft but I need to check if I can scan the whole docker image and upgrade those packages safely.

  • @georgehelyar
    @georgehelyar 2 месяца назад +1

    I wrote a tool for this at my work for every repo without having a local copy, so that we can just update all packages in all repos nightly. It just uses azure devops rest api to fetch only csproj files into memory, load them with msbuild locator, update them with nuget protocol, push back and open a pr.
    Most off the shelf tools including those shown here don't work with projects that contain multiple target frameworks or old style projects like pre core asp, and they tend to be quite slow.

  • @jongeduard
    @jongeduard 2 месяца назад

    Thanks this can be really useful. Although currently it completely aborts at the first project it does not understand, even if I pass it the ifs option (which rather for failed package sources, not for failing projects), so running it for a full directory of projects is still waiting to become easier I guess.

  • @harsha7029
    @harsha7029 2 месяца назад +3

    I yoloed .net 6 to .net 8 and everything worked out of the box.

  • @BillyVanegas
    @BillyVanegas Месяц назад

    I am amazed by these tools, but once you use them, although they streamline and simplify the work, they also let you know how outdated your projects, which comprise the solution, are.
    The path that Scott shows is only a quarter of everything you have to do to transition your .NET 6.0 project to .NET 8.0. If your complete path spans from development to production.
    It took him 10 minutes with three projects, whereas I spent over 2 hours on the same tasks (addressing issues when changing versions, methods that no longer exist and need to be replaced).
    Then, to complete the path to production, for the CI/CD to deploy it to Azure, it took another five hours, for me. The YAML changes, they're small changes but they matter, and then when he does the Release on the app service, there are also other adjustments to make in a YAML.
    In short, it takes almost a full workday to get everything updated (Completed the entire path) and have a correct baseline for the .NET 10 version, which is what I hope to use for the next update.
    I hope to comment on this again in the next 2 years. :)

  • @bdcp
    @bdcp 2 месяца назад +1

    Awesome! Together with upgrade-assistant dotnet cli is on fire! Never knew these tools existed, is there a list compiled somewhere with these tools?

  • @kouroshb26
    @kouroshb26 2 месяца назад

    Anny good guide on moving from vcxproj to csproj guide? Woud love a tool like the one you mensioned to update like the dotnet upgrade assistant

  • @mhDuke
    @mhDuke 2 месяца назад

    thanks hanselman

  • @HunterMayer
    @HunterMayer 2 месяца назад

    Another question... Is this something you would use along side the dotnet upgrade tool. And rhe followup is does it replace the nuget package manager altogether? There seems to be complimentary overlap. Or is your typical use case to not use those tools and rely on outdated solely or mostly.
    What are the case you would use those tools instead of this one?
    (These are all questions i will have to supply the deciders id we adopt this alproach.)

  • @DiomedesDominguez
    @DiomedesDominguez 2 месяца назад

    I just learn about upgrade-assistant, now I can try to upgrade my +12 years old side projects.

  • @mk.gurenzero9434
    @mk.gurenzero9434 2 месяца назад

    I love the terminal color scheme and theme can we get a link or a copy of the settings for that?

  • @ryanryder1981
    @ryanryder1981 2 месяца назад

    Thanks this is great!

  • @flygonfiasco9751
    @flygonfiasco9751 2 месяца назад

    I use this tool a lot. It’s great

  • @Joooooooooooosh
    @Joooooooooooosh 2 месяца назад +9

    Isn't that profile pic @2:38 from like 2003? Might be time to run profilepic-outdated. 😆

    • @funkylosik
      @funkylosik 2 месяца назад +4

      sometimes i still keep the profile picture of me being 6, it has it's charm :D

    • @webluke
      @webluke 2 месяца назад +2

      That's his "codefishing" image to get all the single lines of code.

    • @reikooters
      @reikooters 2 месяца назад

      I'm familiar with his blog and that picture, but this is my first time finding his RUclips channel and seeing what he looks like now, so it was a surprise 😂

  • @kaysammi3
    @kaysammi3 2 месяца назад

    I wish i saw this a couple weeks ago when i updated our app. The nuget packages were my biggest issue.

  • @CafeAsp
    @CafeAsp 2 месяца назад

    Good video, thanks.😀

  • @MarkHegreberg
    @MarkHegreberg 2 месяца назад

    I've written my own bash one-liner that interactively updates packages. super simple, just wraps dotnet list package --outdated with fzf and pipes it into dotnet add package

  • @kj2w
    @kj2w 2 месяца назад

    If I write unit tests using xUnit, is Playwright not an optionn since it specifically mentions testing frameworks: MSTEST and NUnit?

  • @bh9090bh9090
    @bh9090bh9090 2 месяца назад

    All very cool info... but what is that line completion history browser thing?? That's awesome!

    • @shanselman
      @shanselman  2 месяца назад +4

      www.hanselman.com/blog/adding-predictive-intellisense-to-my-windows-terminal-powershell-prompt-with-psreadline

  • @varshneydevansh
    @varshneydevansh 2 месяца назад

    My first and last job was in .NET MVC for Government of India

  • @mattcargile
    @mattcargile 2 месяца назад

    Love seeing you drive stick shift! 😊

    • @BrianHunsakerMusic
      @BrianHunsakerMusic 2 месяца назад

      I'm the other way around. I never do anything command line unless the GUI version doesn't exist. And I'm a long-time, high level programmer. I know it's an uncommon response for people at my level, but it's more efficient and I have no issues with it, otherwise I'd command line more.

    • @mattcargile
      @mattcargile 2 месяца назад

      @@BrianHunsakerMusic bummer! You can’t repeat GUI operations easily and you may miss all the core nuggets of wisdom of how the systems work. Are you working on Rust or C or C++?

    • @BrianHunsakerMusic
      @BrianHunsakerMusic 2 месяца назад

      @@mattcargileC# actually. Some people use the excuse that "the GUI doesn't have all the options", but I say they've never used a product like Tortoise SVN / Git. It can be done well and correct and have all the options I normally need. And I don't have to remember cryptic commands or consult my cheat sheet for things I forgot by avoiding the command line. I don't lose anything, I save time trying to memorize or look up cheat sheets. I understand that people who are always in Unix and other types of folks will prefer command line, that makes sense. For programmers in my area, it just doesn't. But I've always been beating my own drum so it's not surprising.

    • @mattcargile
      @mattcargile 2 месяца назад

      @@BrianHunsakerMusic what about reproducing builds across dev local env? You need to use the CLI for that.

    • @BrianHunsakerMusic
      @BrianHunsakerMusic 2 месяца назад

      @@mattcargileNot sure what you mean. I hit F5 in Visual Studio. When I build Docker containers locally and push to the cloud, yes I use a few commands since it's much faster than a pipeline. That's about it.

  • @IssaFram
    @IssaFram 2 месяца назад

    Is it safe to assume that this tool will search all package reference sources?

  • @andrejdz9ga
    @andrejdz9ga 2 месяца назад

    9:34 this comnent must be engrave in stone for centuries.

  • @HunterMayer
    @HunterMayer 2 месяца назад

    Maybe this is off topic... Nuget package manager is flagging libraries/packages that have known vulnerabilities/issues. Is that within the scope of this tool?

  • @KvapuJanjalia
    @KvapuJanjalia 26 дней назад

    .NET SDK already has a command to list outdated/deprecated/vulnerable packages, but it does not upgrade them.

  • @g3ff01
    @g3ff01 2 месяца назад

    What is that colorful tool telling your basic git info all the time?
    What is the tool you use to search interactively in the git history? It isn't fzf, I guess.

  • @jspesh
    @jspesh 2 месяца назад

    What is that tool you are using to make arrows/boxes on the screen and zoom in?

  • @punters4218
    @punters4218 2 месяца назад +1

    You can’t run .net outdated YOLO 😂 Great video!

  • @Crozz22
    @Crozz22 2 месяца назад

    Why use this instead of just keeping using nuget package manager?

  • @verrigo
    @verrigo 2 месяца назад

    "You guys have tests?!" :D

  • @mustafasabur
    @mustafasabur 2 месяца назад +6

    What’s wrong with NuGet Package Manager?

    • @reikooters
      @reikooters 2 месяца назад

      Seems good if your solution is made up of multiple projects, since the package manager only shows what you're using in that one selected project, where as I can see in the video it's showing updates across all projects

    • @mustafasabur
      @mustafasabur 2 месяца назад +5

      @@reikooters you can also see for multiple projects by right clicking the solution and picking nuget manager

    • @reikooters
      @reikooters 2 месяца назад

      @@mustafasabur Thanks for that! Somehow I never noticed it

  • @Torsan1977
    @Torsan1977 2 месяца назад

    --yolo needs to be a flag on every dotnet command! 😂

  • @edburdo
    @edburdo 2 месяца назад

    Scott... can you do a video about Playwright?

  • @HunterMayer
    @HunterMayer 2 месяца назад

    How did you know I am buried in .net 6 projects and the need to unbury myself is... palpable!

  • @vlogulsibian
    @vlogulsibian 2 месяца назад

    the big question i have is why are missing from my dot net projects parts of the dot net or why can not be accessed . nativewin32 is one of them. i use vs2022c free and i can not access the disks informations if i have multiple disk how can i find the disk infos ???

    • @vlogulsibian
      @vlogulsibian 2 месяца назад

      i now throw c# and return to c++ ????

  • @furqan-safdar
    @furqan-safdar 2 месяца назад

    How to get that colorful CLI in Terminal?

  • @KnowlegeStream
    @KnowlegeStream 2 месяца назад

    hi, can you share your gist please :)

  • @krccmsitp2884
    @krccmsitp2884 2 месяца назад

    Does that also work with Central Package Management (Directory.Packages.props)?