Azure, DevOps and .NET articles

Empowering developers since 2015. Real articles, real insights.

DotNet61 Azure46 DevOps36 JavaScript23 VisualStudio17 CSS12 Jekyll8 Git8 All topics →

    Use PowerShell functions from another repository in Azure Pipelines

    When working with multiple repositories in an Azure pipeline, you might need to access a PowerShell (.ps1) function from one repository while running your pipeline in another. Here’s a straightforward guide to make that happen:

    Read the complete article

    Tips and tricks for accelerating your pipelines on GitLab

    When practicing continuous integration and continuous deployment (CI/CD), optimizing build, test, and deploy times becomes crucial. GitLab, a popular platform for managing CI/CD pipelines, offers several strategies to speed up your workflows. Let’s explore some tricks you can use to accelerate the entire process.

    Read the complete article

    Call a .NET Core API from a .NET MVC app with HttpClientFactory

    The scenario of calling your API from another part of your application is widely needed. This article explains how to call a .NET Core API from your UI, which in this case is a .NET Core MVC application. We’ll create a client for our API methods using Swagger, make it available via a NuGet package to the MVC application, and call the API with the help of the IHttpClientFactory.

    Read the complete article

    Create a NuGet package and host it in a private Azure DevOps feed

    In this tutorial we are going to see how to set up your .NET code as a Nuget Package and host this package on a private Azure DevOps Feed. You can then use the Package on other .NET projects.

    Read the complete article

    How to create an image gallery with Grid and only two CSS classes

    For my latest article I wanted to create a matrix of photos and the grid layout option of CSS came into the rescue. With only two CSS classes, one for the grid itself and one for the grid cells you can create a beautiful image gallery for your website.

    We are also going to see how to apply the grid on Markdown code and how to change the way the grid is presented on mobile devices.

    Read the complete article