Tag: VSTS

  • Slides from VSLive Chicago 2018: “Real World Scrum with Azure DevOps & TFS”

    Slides from VSLive Chicago 2018: “Real World Scrum with Azure DevOps & TFS”

    As promised, here are the slides from my Real World Scrum with TFS2018 and Azure DevOps talk at VSLive Chicago 2018. Real World Scrum with Team Foundation Server 2018 & Azure DevOps (aka. Visual Studio Team Services) You’ve got Team Foundation Server 2018 or Azure DevOps and you’re looking to do Scrum.  Ok.  Great.  Now…

  • Deploy Entity Framework Core 2.1 Migrations from a DLL

    Deploy Entity Framework Core 2.1 Migrations from a DLL

    We’ve got a new version of .NET Core and a new version of Entity Framework Core (EF Core).  Unfortunately, EF Core 2.1 hasn’t made it any easier to deploy database migrations from DLLs rather than from the source code.  (sigh)  Deploying EF Core migrations from DLLs is a key feature for DevOps CI/CD stuff —…

  • Deploy Entity Framework Core 2.0 Migrations from a DLL

    Deploy Entity Framework Core 2.0 Migrations from a DLL

    (UPDATE 7/5/2018: If you’re using EF Core 2.1, you’ll probably want to read the updated version of this post.) In a previous blog post, I discussed how difficult it is to deploy Entity Framework Core migrations from the compiled binaries of your project.  It’s still difficult to do.  You might be thinking, “well, why even…