SSH.NET Library Installation in Visual Studio - vb.net

I would like to install the following library in Visual Studio 2010:
https://github.com/sshnet/SSH.NET
And I really don't know how I'm supposed to do.
Can anyone please help me?

1) You can install the nuget package manager if you don't yet have in your VS 2010. This link will help you install nuget package manager.
2) After you have nuget manager then you can right click on your project in visual studio, click 'Manage Nuget Packages' and in the browse window that appears search for 'SSH.Net', once the package is listed click on install option to install the package with your project.

Related

Can't install HeatWave extension for Visual Studio Code

I am trying to create an MSI file through WiX. To do that in VSCode, I need to install the "HeatWave" extension. But I can't find it in the extension marketplace.
It is, however, in the online web browser marketplace.
I downloaded the VSIX file and tried to install it through that - Didn't work either.
It just gave me this error.
"extension/package.json was not found in ZIP"
What is preventing me from installing the extension? Is there any other way to add WiX to Visual Studio Code?
HeatWave is an extension for Visual Studio; it doesn't support Visual Studio Code. We're not aware of any Visual Studio Code extensions for WiX today. But please file a feature idea at https://github.com/firegiant/HeatWaveSupport/issues/new/choose so the dev team can track interest in VSCode.

It can be use in Visual Studio 2019?

I was wondering if EPPLus can be use in Visual Studio 2019. I was looking into others Nugets but this is the most relevant for what I need. I saw in the Nuget Gallery (https://www.nuget.org/packages/EPPlus/) that it is usefull in Visual Studio 2017.
EPPLus is a nuget package, it is not linked to Visual studio version but on your code target. So you can use it in VS 2019.
I'm using it in my current project in .NET Core API
I can see the OP accepted the previous answer but here is a more detailed answer just in case anybody needs it in the future.
From Package Manager Console in an open project
Install-Package EPPlus
If you do not know where to access Package Manager Console from
Navigate to Tools / Nuget Package Manager / Package Manager Console
Then run the above command
or
Right click dependencies in the project and select Manage Nuget Packages
in the browse tab enter EPPlus

How to add reference to Microsoft.CSharp in a Visual Studio Professional 2010?

I have inherited a Visual Studio (VB) project. (I am new to Visual Studio, Net Framework and VB). I need to add Credit Card payment processing using BeanStream. As per the instructions provided on http://developer.beanstream.com/, I tried to install Beanstream package using NuGet Package Manager Console.
PM> Install-Package Beanstream
It installed the package successfully but then rolled back and displayed an error message:
Install-Package: Failed to add refernece to 'Microsoft.CSharp'. Please make sure that it is in the Global Assembly Cache.
I understand that Micsosoft.CSharp is either not installed on my Windows PC or is not accessible to Visual Studio. I did not find 'Microsoft.CSharp' in the Add Reference dialog box.
Could someone please advise how to fix this issue?

'npm' is not recognized as an internal or external command error in Developer Command Prompt for VS2015

I am trying to execute npm install –g tsd in Developer Command Prompt for VS2015.
But it returns
'npm' is not recognized as an internal or external command,
operable program or batch file.
Any idea?
To solve this issue in Visual Studio 2017 (and above), make sure to install the NodeJS tools in the VS installer.
To launch it, go to Control Panel -> Programs -> Programs and Features, scroll down to Visual Studio 2017 and click Change.
Choose Modify in the installer.
Check the Node.js development checkbox and click Modify to complete the installation.
Download / Install NodeJS tools for Visual Studio; that'll fix the issue and give you intellisense among other benefits!
https://github.com/Microsoft/nodejstools
This solution is specifically for Visual studio code editor.
The easiest way to solve that, is to install plugin for node.js using VS code editor,
To do that follow the steps.
click on Extension Icon, and type in search box node.js, It will give you search result.
Look for the node.js Extension pack.
It should look like the bellow screen, I have already install, the extension. That is why, the green install button is not visible, Just hit on install, once finished. Restart the VS code. now it should work for sure.
You can install Node.js from https://nodejs.org/en/. 'npm' may be unrecognized in Visual Studio 2017 and Win 10 OS when node.js package is not found. After installing node.js package, it will automatically add '..\nodejs' value in Environment variable 'PATH'. Once node.js package is installed, restart your Visual Studio 2017 to Rebuild your project again.

Getting msbuild.exe without installing Visual Studio

How do you get msbuild.exe without installing those crazy Visual Studio programs?
I need it for an npm install to finish working. I'm on Windows 7 and can't get on older version of Visual Studio 2013 Express online.
The latest (as of Jan 2019) stand-alone MSBuild installers can be found here: https://www.visualstudio.com/downloads/
Scroll down to "Tools for Visual Studio 2019" and choose "Build Tools for Visual Studio 2019" (despite the name, it's for users who don't want the full IDE)
See this question for additional information.
It used to be installed with the .NET framework. MsBuild v12.0 (2013) is now bundled as a stand-alone utility and has it's own installer.
http://www.microsoft.com/en-us/download/confirmation.aspx?id=40760
To reference the location of MsBuild.exe from within an MsBuild script, use the default $(MsBuildToolsPath) property.
You can also get the MSBuild executable as a Nuget package https://www.nuget.org/packages/Microsoft.Build.Runtime/.
Download MSBuild with the link from #Nicodemeus answer was OK, yet the installation was broken until I've added these keys into a register:
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\MSBuild\ToolsVersions\12.0]
"VCTargetsPath11"="$([MSBuild]::ValueOrDefault('$(VCTargetsPath11)','$(MSBuildExtensionsPath32)\\Microsoft.Cpp\\v4.0\\V110\\'))"
"VCTargetsPath"="$([MSBuild]::ValueOrDefault('$(VCTargetsPath)','$(MSBuildExtensionsPath32)\\Microsoft.Cpp\\v4.0\\V110\\'))"