Paul Hatcher
Paul Hatcher
**What is the Feature? Please describe.** Provide a wrapper for the dotnet tool so it can be installed into an Azure DevOps organisation. **Use Case** Most people would not want...
From CodeProject comments... just playing around with this and thought you should know this will throw exceptions if there are unescaped quotes and/or newlines (not CR/LF, just LF) in tab...
Need to be able to wild card both users and roles in the allow/deny; this is so we can override a specific permission without the fallback taking precedence, e.g. ```...
Given a class with an enum the assertion fails if you convert the entity to json to get the post body, e.g. ``` [TestMethod] public void PackagePost() { var package...
There are multiple ways of running GitVersion (command line, devops tool etc), and the behaviour can be non-obvious, it makes sense to optionally report this as part of the command...
I'm trying to run a script as NET Core 3.1 but `dotnet script main.csx` is not obeying the version, at the top of my file I have `#! "netcoreapp3.1"` and...
Not ready to be merged yet, but gives you an idea of approach... 1. Works on Queues/DLQ 1. Simple string.Contains on message content 1. Option for regex? 1. Should we...
I needed to resubmit some messages from the DLQ with a particular data value, but the filtering on ServiceBus queues/subscriptions uses the ServiceBus filter which requires that the properties are...
Copied from https://github.com/AzureADQuickStarts/B2C-WebApp-WebAPI-OpenIDConnect-DotNet/issues/9#issuecomment-323183755 as @parakhj says the old sample will be deprecated... Issue I had today was my API couldn't connect to Azure B2C, during startup which caused a yellow...
**What is the problem you're trying to solve** I migrate my images from a devtest to production container registry when they pass a certain stage in the CI/CD pipeline using...