After my team decided to incorporate Azure Pipelines on existing projects, one of the most difficult parts of the task for me was to look for the r...
For further actions, you may consider blocking this person and/or reporting abuse
I tried this but no luck.
Getting error "An error occurred while validating. HRRESULT = '8000000A'"
Hi, could you pls share some more information, like what command you used, or what task you used?
Here you go -
"C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\devenv.exe" MyApp.sln /Rebuild "Release|Any CPU" /Project "Setup/MyStep.vdproj"
The command looks fine but I suspect the last two arguments you're passing "/Project" and "Setup/MyStep.vdproj" could be causing the issues.
One way to test the correctness of your command is that you run it on a command prompt. Can you pls verify it?
I ran this on command prompt locally first and getting same error.
If you're getting the same error in command prompt, it means that the command you're passing is not right. Can you ommit the last two parameters and then run? It should build the solution and generate a build for the Setup Project.
Because I'm not aware why those two parameters are needed.
I have a vdProj setup project, and unable to build setup project from .vdproj in Azure DevOps.
I need to create an msi package from this pipeline. But looks like i might need some private extension like the following which is not supporting as of now. Are there any workarounds?
marketplace.visualstudio.com/items...
could you give an example of how you fill your command line?
What do you write in configuration and platform?
Here it is:
C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\devenv.exe "D:\SourceCode\MyApp\MyApp.sln" /Rebuild "Release|x86"