Cannot Found installed VS Code after Snapcraft Install - visual-studio-code

Dear fellow programmers,
Today I just decided to move to VS Code from Sublime Editor and I have installed Visual studio through snapcraft intall, the instalation is done properly as you can see below.
But after that installation I cannot found Visual Studio anywhere, I tried to find it on menu, desktop and terminal as well but no luck the Visual Studio is not anywhere.
My question is How to open an Application (VSCode) that have been installed using snapcraft ?
Thank for the helps.

Related

Unity with Visual Studio 2019 : Assembly-CSharp (incompatible) in Solution Explorer

I'm new to Unity and can't find how to get it working with Visual Studio 2019 properly.
I just installed Unity 2020.3.13f1 (LTS) from the Unity Hub as recommended for Hololens developement.
I already had VS2019 latest version installed and working.
In VS2019, I installed: Tools => Get Tools and Features => Game development with Unity
When I double click a script in Unity, VS2019 open and I get the following error: Assembly-CSharp (incomptible)
Also in Unity, I have a warning: Visual Studio Editor Package version 2.0.11 is available, we strongly encourage you update from the Unity Package Manager for a better Visual Studio Integration
Update I fixed the warning (see below) but still have the error in Visual studio
In Unity, I updated the package: Window => Package Manager => Visual Studio Editor => 2.0.11
I also did: Edit => Preferences => External Tools => Regenerate project files
I now have all latest Unity package versions:
But I still have: "Assembly-CSharp (incomptible)", How to get valid solution in Visual Studio ???
Have had this issue for months... After numerous different posts/guides on this issue, I found just right clicking and hitting "Reload project with dependencies" for each project worked.
Now this was after fully updating Visual Studio and Unity, uninstalling the VS Unity tools, reinstalling, and reconfiguring visual studio tools in Unity... Figured I'd add this to to the list of things to try because it worked for me!
You should probably try right clicking the file and choose reload.
When I tried it Solved my issue
I deleted my project and created a new one and everything is fine now in Unity and Visual Studio (All references and scripts).

Visual Studio code does allow to search extentions from the market place

Visual Studio code does allow to search extensions from the market place.
Version installed is 1.35.1
Why installing version 1.35.1 while the latest version is 1.54. Btw, you can easily go to extensions for vs code, search for any extension you want, click on install and it should try to open the link in your vs code.
This should work.

Mercurial plugin for visual studio code

I'm developping a project with React.
The IDE I use for React (ES6) is Visual Code and the version control is Mercurial Hg.
(I'm in Windows and I get issue with Atom, that's why I use Visual Code).
My problem is I cannot find a plugin for Visual Code to manage the source control with Hg.
Is anyone know a plugin and can help me ?
As #mrcrowl mentionned in his comment, this is the plugin I was loking for
https://marketplace.visualstudio.com/items?itemName=mrcrowl.hg
Visual Studio Code was designed to be directly integrated with Git, so currently there aren't any resources for Visual Studio Code that add Mercurial integration, however, many people have already expressed their interest in the idea on Visual Studio Code's UserVoice.
If you really want to, you could always create a simple plugin for Visual Studio Code that adds a couple commands to the editor, which could then be used to help you control the Mercurial CLI.

Intellisense does not work visual studio code in OSX Yosemite

The intellisense does not work visual studio code in OSX Yosemite. Are there any specific steps to debug this issue?
If you open a folder that contains multiple projects, such as the aspnet/Home repo, you would first need to pick a project:

Visual Studio 2012 Add-In - How to share/publish/deploy it?

I have been working on a Visual Studio solution template to be used internally and have been developing this in a Visual Studio 2012 Addin.
The addin is added to the tools menu of Visual Studio and all works fine.
The only question now is, how can I share this tool between my team?
I have added a VSIX project, which in turn references the Solution Template project (added as an asset) but will this alone do it?
I can't see how installing the VSIX I created is manually going to add my add-in to the Visual Studio Tools window.
Can anyone offer any advice as to how I can do this or is there some other way to deploy/publish a Visual Studio addin?
I have found a tutorial which is similar, but I just want to use the VSIX to install my add-in to Visual Studio tools menu, rather than add it as a project template. I have looked around and there doesn't seem to be much information on how to deploy your addin.
It seems addins are soon to be deprecated with the next release of Visual Studio, although I have found this article on how to convert an addin to a VSPackage.
And with a VSPackage I will be able to deploy using VSIX.
There are also some tutorials on VSPackages here.