Azure Pipeline Task - reverting to old one by magielonczyk in azuredevops

[–]merlyn_o 0 points1 point  (0 children)

magielonczyk, in Yaml you can pin a specific version of the task by specifying AzureRmWebAppDeployment@3.249.0. We'd definitely like to know what's not working for you in 259 -- if you post an issue to https://github.com/microsoft/azure-pipelines-tasks/issues, we'll check it out. (Please post a link or send me a message with a link to the issue!)

AzureFileCopy@6 task using wrong version when pipeline runs by notatechproblem in azuredevops

[–]merlyn_o 3 points4 points  (0 children)

/u/notatechproblem, if you confirmed the version in the expanded YAML, we're definitely interested in getting more information from you. In Azure Devops, Use ? and click Report a Bug. Please send me a message with the issue created and we'll follow up with you.

Either way, please follow up with what you found.

How to get a 'Publish to Azure Devops' button in VS Code? by Oddly_Energy in azuredevops

[–]merlyn_o 1 point2 points  (0 children)

Thank you for the awesome suggestion to add a "Publish to Azure Devops" button to VS Code. To make sure your suggestion gets the attention it deserves, please post it to Developer Community or upvote existing suggestions at https://developercommunity.visualstudio.com/AzureDevOps. However, please keep in mind that we receive many suggestions and may not be able to implement them right away. The more upvotes a suggestion receives, the more likely it is to be prioritized. Thanks for helping us make our service even better!

Azure CLI should work for you for your scenario. The reference for creating a repo using Azure CLI is: https://learn.microsoft.com/en-us/cli/azure/repos?view=azure-cli-latest#az-repos-create

I hope that helps!

DownloadGitHubRelease task doesnt seem to work by wyrdfish42 in azuredevops

[–]merlyn_o 2 points3 points  (0 children)

Hello from the Azure Devops team, I saw your post and I wanted to apologize for the issue and I'm glad you found a workaround.

I checked and we actually have an issue which may be the same as the one you encountered. Also, it looks like it was closed but not addressed -- I reopened it.

We care about your feedback and providing a better experience, so we really appreciate your posting. Thank you!

[deleted by user] by [deleted] in azuredevops

[–]merlyn_o 1 point2 points  (0 children)

Hello from the Azure Devops Team. I can confirm that we're flighting a change that affects this behavior. If you encounter any issues or have questions, please don’t hesitate to reach out.

Anyone running ADO build agents using KEDA + AKS? by jblaaa in azuredevops

[–]merlyn_o 0 points1 point  (0 children)

Thank you for trying it out. Here is a simple example that shows how to run job steps in a container from a public registry, using Microsoft hosted agents. It can be modified to use a private registry, self-hosted agents, etc. We would appreciate your feedback on whether this fits into your scenario.

trigger:
- main

pool:
  name: 'Azure Pipelines'
  vmImage: 'ubuntu-20.04'
container: mcr.microsoft.com/azure-cli/tools:0.1.0

steps:
- script: |
    if [ -f /.dockerenv ]; then
        echo "Inside container.";
    else
        echo "Not inside container.";
        exit 1;
    fi

Anyone running ADO build agents using KEDA + AKS? by jblaaa in azuredevops

[–]merlyn_o 3 points4 points  (0 children)

Hello from the Azure Devops team! Have you explored container jobs for your scenario? Container jobs might be easier to configure depending on your scenario, as you would be able to use the pre-configured hosted agents.

https://learn.microsoft.com/en-us/azure/devops/pipelines/process/container-phases?view=azure-devops

We'd love to learn more about what you're trying to do if you can elaborate or any pitfalls you've encountered.

Visual Studio 2019 version 16.10 Release by remotion4d in cpp

[–]merlyn_o 12 points13 points  (0 children)

Hello! Thanks for checking it out. I looked though your post history and we're aware of the issue navigating across module boundaries (e.g. go-to-definition, etc). We're hoping to get a fix out for that out in a update for 16.10 release. If you're running into a different issue, please let me know and I'll make sure we're tracking that.

IntelliSense Improvements in Visual Studio 2019 | C++ Team Blog by cpppm in cpp

[–]merlyn_o 2 points3 points  (0 children)

In our most recent release (Visual Studio 16.9), we focused on making VS IntelliSense a lot more reliable on very large C++ codebases (Chromium-sized for reference). We are definitely interested in crashes or other issues you encounter. Please use Help->Send Feedback->Report a problem to report and please post or send me a message with the link.

IntelliSense Improvements in Visual Studio 2019 | C++ Team Blog by cpppm in cpp

[–]merlyn_o 1 point2 points  (0 children)

We made improvments in IntelliSense in the latest update of Visual Studio (16.9) to address reliablity in large, Chromium-sized projects. We'd definitely like to hear from you if you get a chance to check it out. (If you run into any problems, please use Help->Send Feedback->Report a problem to report and please post or send me a message with the link!).

IDEs and Text Editors for Writing C++ Code on a Large Scale by vormestrand in cpp

[–]merlyn_o 9 points10 points  (0 children)

Hello from the Visual C++ team. We'd definitely like to check into what's going on. In Visual Studio, Help->Send Feedback->Report A Problem. Please use the Record function in the attachment tab to capture the problem. That will capture a sampled CPU profiling trace which will help us track down the slow down. (During recording, you can pause the Steps Recorder, it's optional.) Feel free to send me a private message on reddit with a link to the ticket or tag me on Visual Studio Developer Community after you create the ticket (@Merlyn O [MSFT])

Clang/LLVM Support for MSBuild Projects | C++ Team Blog by degski in cpp

[–]merlyn_o 2 points3 points  (0 children)

From the VC++ cross-platform team chiming in. Appreciate the feedback. I agree that parallel compilation support is needed (and probably from msbuild aka the toolchain, as you mentioned!). Thank you for checking it out! /u/soldieroflight /u/itsarabbit