Can't access Teams Toolkit menu in VSCode? - visual-studio-code

I am trying to build an app in VSCode using the Microsoft Teams Toolkit. I already have a skeleton application and don't need to create a new one from scratch. When I installed Teams Toolkit, I get this menu:
All the tutorials say I should have a menu where I can see things like my account, but I can't get past what seems to be a tutorial menu. I tried going through each step in this menu, but it still doesn't display the full menu. Any ideas?

Related

Not able to access microsoft teams toolkit

I am trying to create new teams app using Microsoft teams toolkit inside visual studio code.
I have installed Microsoft teams toolkit extension. When I am trying to create a new app all the options are disabled and show the clock symbol on teams extension. Please help me out to resolve this issue.
I am attaching image link hereimage
Thank you so much in advance.
The extension takes some time (usually several seconds) to activate which depends on the machine state. If this is your first installation, the time cost is larger. From the attached image, it seems that the Teams Toolkit extension is still activating so that it has a running progress bar on the top of sidebar. During this time, the buttons are disabled. After that, the buttons will be enabled.

How can I add an option to the ellipsis or right-click of an Azure DevOps work item (like a User Story)?

I saw an two-year-old question on SO about it, but nothing recent. When I look at a card on the board, User Story, Task, etc., I have an ellipsis. How can I add to the menu when it pops up or from a right-click menu. Is that possible with Visual Studio or somewhere in the Azure DevOps admin?
There’re many work items extensions in marketplace:Extensions for Visual Studio family of products .
You can install extension that’s related to work items in your DevOps and option will be added to the menu automatically.
For example, install extension Open in Excel and you’ll see the option open in excel in your menu.
I recommend you to search extension that meets your needs in marketplace. If there's no appropriate extension, you can develop by yourself. please refer to doc: develop a web extension
And you can describe what function you want to add to option, i can help you to search it in marketplace.

Install App in Office 365 online

I'm trying to install an App from the Office Store in Office 365 Home Premium, specifically the online version accessed via OneDrive. Example of such an App would be Modern Trend for Excel. The documentation says click Insert > My Apps, but I don't find this menu option in the online Excel.
Can Apps be installed in the online version of Office? If so, how?
I doubt your question is suitable for SO as it seems you're asking about how to install an already made application as opposed to developing said applications.
In the event I'm incorrect...
Apparently not; that doesn't surprise me though. Also, notice the link you provided doesn't specify that it pertains to any of the online versions of mentioned programs.
I opened my account, created a blank worksheet, and tried to add an app. First thing to notice is that the ribbon is limited online. It doesn't even have the "Apps" section as shown in the link. So I proceeded to "open in Excel", which will open the file on your local machine. Yahtzee, I'm able to add the app.
Perhaps you should try adding the app at "home" and after opening the file online and see if the app is functional. Problem would be solved.
It looks like Microsoft currently has this feature on their development roadmap:
http://office.microsoft.com/en-us/products/office-365-roadmap-FX104343353.aspx

Is there a way to have Visual Web Developer ignore build errors?

I'm using MS's VWD to edit some .aspx files in our website (I'm opening it as a website, not a project/solution).
I have some temporary files just for testing and some generate Build errors in VWD 2010.
But VWD won't let me "run" other pages in the website with those Build Errors present.
Is there a way to get it to IGNORE them?
Im using Visual web developer express,
but assume the the settings are the same.
click on TOOLS on the MENUBAR
click on OPTIONS when the TOOLS menu drops down
click on SHOW ALL SETTINGS when the OPTIONS window appears
click on PROJECTS AND SOLUTIONS in the LEFT hand panel
click on BUILD AND RUN in the projects and solutions drop down
in the rigt hand panel, look for the text "On Run, when build or deployment errors occur:"
change it to "PROMPT TO LAUNCH"
click OKAY button to save changes
Voila.

Developing an Eclipse Plugin and adding a submenu item to navigator

This is my first attempt at an Eclipse plugin- the plugin architecture is vast and a little overwhelming, but I've found a number of tutorials and how-to's online which is helping, but trying to do the following is driving me nuts:
I want to add a submenu item that is available in the navigator context menu when you right click on an Eclipse project.
I can get a submenu to appear on a project file or folder, but absolutely no idea how to have it appear on a project.
Would someone be so kind as to provide me with step by step instructions, starting with creating a new plugin-project? This is probably a lot to ask, but I can't seem to find an online guide that has just the right amount of detail. I specifically want to use the plugin-project wizard rather than hand code a plugin.xml file as I am not very familiar with the Eclipse plugin architecture.
Ok- I got it- it was simple, but I got lost in the noise of the API-
Create a new Plug-in Project using the Plugin-Project Wizard and when the wizard has launched...
1.
On the Plug-in Project page, use anything as the project name and 3.5 as target platform eclipse version
2.
On the Content page, skip ahead and just press next
3.
On the Templates page, select "plug-in with a popup menu" and press next
4.
On the Sample Popup Menu page, you will see that eclipse has prefilled the field
"Target Object's Class" with a value of "org.eclipse.core.resources.IFile".
This means that when your popup menu will only appear when you right-click on a file in
a project. As we want the menu to appear when we right click on a Project when
we are using the Navigator view, simply use "org.eclipse.core.resources.IProject" instead
5.
Finish
You can validate that your pop-up will appear as expected by right-clicking the MF file
and "Run-as" > Eclipse Application
Now to refactor the resulting code to use menuContributions and commands rather than objectContributions and actions :)
I think you have a similar question (menu in the package explorer) here:
Renaming packages in Eclipse (thanks to Rich Seller)
This could be a good start, and is a complete plugin project.
You should look into the Eclipse Common Navigator Framework there are a few tutorials on this side that tell you what to do in detail The Project Explorer is an implementation of the CNF. You should also consider using the Platform Commands to add your commands (and popup menu item) to the popup menu associated with the project explorer. It's somewhat easier to use commands than actions. You should be able to do it with by adding a Command in your plugin extensions. Unfortunately off the top of my head I don't know the right incantation to have the command appear in the project explorer. But you will be able to find it in these resources.