How to show a custom web page in 1 Azure DevOps project only - azure-devops

I understand I can build Extension, but it appears it will install on all projects in the collection. My custom web page is only relevant to 1 project.
I found this SO question How to install a TFS extension only on some project instead the whole collection but the 3 links in the answer aren't working.
Anyone have any work around suggestion?

As is shown in the ticket, the extension installed in the Collection Scope, the extension will be installed for all team projects.
Azure Devops doesn't support installing extensions for a single project now.
Since you are using the custom web page(custom extension), I am afraid that there is no method could limit the extension to users.
For some extensions and paid extension, you can restrict users from using this extension by assigning extension to user or changing access level.
You could refer to this doc about users access extension features.
Here are the User Voices about this feature, many customers have the same requirement.
Allow Extensions to be Installed only in Projects
Extensions scoped at a project level
You could vote it and add your thoughts in comment.

Related

How can I publish my flutter app in Codemagic to their static pages without using Workflow Editor

I am able to publish my flutter app to the Codemagic static pages. I go into workflow editor under distribution and I can set it up. I want to get away from workflow editor and use their codemagic.yaml file instead. When I do that, I don't see how I can add the publish to static pages. I can't find any documentation on it. All the documentation says to do it from workflow editor.
Can I configure this in the yaml file? I want to be able to write scripts with my builds, so I need the yaml option. Thanks.
Codemagic developer here.
Unfortunately at this moment (May 2022) we provide static pages for quick preview for educational purpose mostly. Advanced users should consider to use professional solutions like Firebase Hosting to host sites.
So this is why we don't support static page deployment with codemagic.yaml file, but you can easily publish to Firebase Hosting using preinstalled Firebase CLI tools or to any other services.

Adding Authorization Details in package.json

I am trying something which involves allowing/authorizing access to online account from Visual Studio Code. The idea is that as soon as Atlassian Jira Extension will be installed, then the users will be allowedto their online Jira account from within VS Code so that can access the functionalities within the VS Code. Is there any way of doing this in package.json file? I mean is there any way of adding authorization credentials within package.json so that as soon as the extension is installed, the online Jira account opens in the VS Code?

How to move portal artifacts from one environment to another in Redhat's 3scale

We are working with Redhat's 3scale as our API management platform.
Currently we have a development environment and we are trying to build up another environment(Staging/Production).
Does anyone know how to move the artifacts(Pages, Files, Partials, Layouts, Sections etc.) of the Developer portal from one environment to another?
At the moment there is no API available yet for the Developers Portal, but it is on the product roadmap: https://issues.redhat.com/browse/THREESCALE-361?jql=project%20%3D%20THREESCALE%20AND%20description%20~%20%22api%20cms%22

Get UWP Store associations using PowerShell or MSBuild

I'm using AppVeyor CI to build my UWP app and want to create an APPX package during every build. However my .gitignore is ignoring the Package.StoreAssociation.xml and MyAppName_StoreKey.pfx which I want to include in the APPX package as they are identifying my app in Windows Store.
Is there any way to get these files using PowerShell or MSBuild or something like that? In other words, is there any command line equivalent to the Project > Store > Associate App with the Store... wizard?
I know I can upload these files to the repo as Secure files but I'd prefer getting the latest files from the Dev Center with every build.
I would say probably not, as the Associate App with the Store Wizard, is an authenticated Wizard which requires a users Microsoft Account to be registered with Visual Studio, Load Credentials from storage or asking for OAuth, and then Visual Studio goes to Microsoft's server to Sign the Certificate and Sign the app with it.
AppVeyor documentation says the currently UWP is not officially supported for UWP, as a Microsoft License is required.
Edit: Does this help?
Is there any way to get these files using PowerShell or MSBuild or something like that? In other words, is there any command line equivalent to the Project > Store > Associate App with the Store... wizard?
No, as #William's explanation. The associating operation needs user's interaction in Visual Studio, this doesn't depend on a public command/API.
In my experience, we need to store(maintain) the latest store association information in somewhere, overwrite the related files and replace the reserved keywords in the app's manifest template file before packaging.

Creating a copy of an Assign to feild in Visual Studio Team Services (was TFS Online)

I am customizing a bug template in Visual Studio Team Services (was TFS Online), and I would like to add a new field called Required Information. but I would like it to be a drop down of the users that I can assign a TFS task to.
So I want a copy of the assign to dropdown.
Can this be done?
It can be done easily in on-premise TFS by modifying the process template. In VS Team Services, although you can customize work items, you cannot modify the process template directly.
Using identity (e.g. a user list) or custom pick-lists are not yet supported. The work to support those features is on-going and is targeted for the first half of 2016, per this blog.