Override TestRunParameters in .NET Core
Posted: May 30, 2019 Filed under: .NET Core, Azure, DevOps | Tags: .NET Core, Azure, Azure Pipelines, Continuous Integration (CI), DevOps, YAML 1 CommentUsing a .runsettings
file with a <TestRunParameters>
element is a convenient way to keep sensitive information required by your integration tests, such as for example username and passwords, out of source control. At least if you run your tests on Windows using Visual Studio Test or the VSTest@2
task in Azure Pipelines.
Read »
Using Azure Pipelines to Publish your GitHub project to NuGet
Posted: December 11, 2018 Filed under: Azure, DevOps | Tags: Azure, Azure Pipelines, Continuous Deployment (CD), Continuous Integration (CI), DevOps, YAML Leave a commentAzure Pipelines is Microsoft’s new cloud-based continuous integration (CI) and continuous deployment (CD) service that lets you build and test software written in any language and deploy it to any platform. And one of the best things is that it’s completely free to use for open source projects. In this post you will learn how easy it is to set up it up to build, test and package a .NET standard project that is hosted on GitHub before deploying it to NuGet. Read »