I've moved my podcast site over to ASP.NET Core 2.1 over the last few months. You might want to follow the saga by checking out some of the recent blog posts.
- Upgrading my podcast site to ASP.NET Core 2.1 in Azure plus some Best Practices
- Major build speed improvements - Try .NET Core 2.1 today
- Using ASP.NET Core 2.1's HttpClientFactory with Refit's REST library
- Penny Pinching in the Cloud: Deploying Containers cheaply to Azure
- Detecting that a .NET Core app is running in a Docker Container and SkippableFacts in XUnit
- Adding Cross-Cutting Memory Caching to an HttpClientFactory in ASP.NET Core with Polly
- The Programmer's Hindsight - Caching with HttpClientFactory and Polly Part 2
- Setting up Application Insights took 10 minutes. It created two days of work for me.
That's just a few of the posts. Be sure to check out the last several months' posts in the calendar view. Anyway, I've been trying lots of new open source tools and libraries like coverlet for .NET Core Code Coverage, and frankly, keeping my project files and dependencies up to date has sucked.
Npm has "npm outdated" and paket has "paket outdated," why doesn't dotnet Core have this also? Certainly at a macro level there's more things to consider as NuGet would need to find the outdated packages for UWP, C++, and a lot of other project types as well. However if we just focus on .NET Core as an initial/primary use case, Jerrie Pelser has "dotnet outdated" for us and it's fantastic!
Once you've got the .NET Core 2.1 SDK or newer, just install the tool globally with one line:
dotnet tool install --global dotnet-outdated
At this point I'll run "dotnet outdated" on my podcast website. While that's running, let me just point you to https://github.com/jerriep/dotnet-outdated as a lovely example of how to release a tool (no matter how big or small) on GitHub.
- It has an AppVeyor CI link along with a badge showing you that it's passing its build and test suite. Nice.
- It includes both a NuGet link to the released package AND a myGet link and badge to the dailies.
- It's got clear installation and clear usage details.
- Bonus points of screenshots. While not accessible to call, I admit personally that I'm more likely to feel that a project is well-maintained if there are clear screenshots that tell me "what am I gonna get with this tool?"
Here's the initial output on my Site and Tests.
After updating the patch versions, here's the output, this time as text. For some reason it's not seeing Coverlet's NuGet so I'm getting a "Cannot resolve latest version" error but I haven't debugged that yet.
» hanselminutes.core.tests [.NETCoreApp,Version=v2.1] Microsoft.AspNetCore.Mvc.Testing 2.1.1 Microsoft.NET.Test.Sdk 15.7.2 Selenium.Support 3.13.1 Selenium.WebDriver 3.13.1 Xunit.SkippableFact 1.3.6 coverlet.msbuild 2.0.1 Cannot resolve latest version xunit 2.3.1 xunit.runner.visualstudio 2.3.1 » hanselminutes.core [.NETCoreApp,Version=v2.1] BuildBundlerMinifier 2.8.391 LazyCache 2.0.0-beta03 LazyCache.AspNetCore 2.0.0-beta03 Markdig 0.15.0 Microsoft.ApplicationInsights.AspNetCore 2.4.0-beta2 Microsoft.AspNetCore.App 2.1.1 Microsoft.Extensions.Http.Polly 2.1.1 Microsoft.NET.Test.Sdk 15.7.2
As with all projects and references, while things aren't *supposed* to break when you update a Major.Minor.Patch/Revision.build...things sometimes do. You should check your references and their associated websites and release notes to confirm that you know what's changed and you know what changes you're bringing in.
Shayne blogged about dotnet out-dated and points out the -vl (version lock) options that allows you to locking on Major or Minor versions. No need to take things you aren't ready to take.
All in all, a super useful tool that you should install TODAY.
dotnet tool install --global dotnet-outdated
The source is up at https://github.com/jerriep/dotnet-outdated if you want to leave issues or get involved.
Sponsor: Check out dotMemory Unit, a free unit testing framework for fighting all kinds of memory issues in your code. Extend your unit testing with the functionality of a memory profiler!
© 2018 Scott Hanselman. All rights reserved.