Matt Ellis
Matt Ellis
The current rule will convert `@"This is a snowman: ☃."` to: `@"This is a snowman: \u2603."`. This is wrong because we want the unicode literal in the string, not the...
Per the guidance: > Namespace imports should be specified at the top of the file, outside of namespace declarations and should be sorted alphabetically, with `System. namespaces at the top...
See the discussion in https://github.com/Azure/azure-dev/pull/542#discussion_r802125087. When we do this, we should go fix the glob back up and also ensure that the context menu commands show up for `azure.yml` in...
During the code review of the monitor spike we started to discuss cases where we have to do multiple azure operations which could happen in parallel (for example, listing resources...
>When deploying to Azure App Service, you can decide if you would like Azure App Service to build your application (in which case the zip package you upload contains the...
To support their extension, Visual Studio calls `azd` with `--output=json` and uses these structured messages to drive behavior internally. Previously, when running `azd infra create --output=json` we would spit out...
We have this comment in the terraform provider ```golang // Most azure resources use "id" as the key in the values bag that holds the resource id. However, some //...
From a PR of mine, but I don't think the PR is the issue. Note that we tried to hit az deployment sub show to find the final deployment result...
Both `Test_CLI_InfraCreateAndDeleteFuncApp` and `Test_CLI_InfraCreateAndDeleteWebApp` have been hitting random issues in CI over and over. To unblock progress, adding `t.Skip()` to both of these tests, and this issue tracks up re-enabling...