I'm getting an error trying to remote debug(Visual Studio 2022) on an SBC(orangepi) that is running Debian 11. I have an ASPNET dotnet core application running that I want to debug. I am entering the same information that I'm using to success connect SSH with Bitvise and winscp. Visual studio is telling me that there is an authentication issue which there isn't.
Related
I'm operating in a mixed environment with some developers using macOS and others Windows 10. I've got an ASP.NET Core 2.0 MVC project that is configured for Windows Authentication and can be tested/debugged in Visual Studio on Windows but I'm clueless how to enable Windows Authentication while testing the app in Visual Studio on the Mac. Is this even feasible?
Yes it is from CLI. Please try this command from terminal-
dotnet new mvc -o moviemvc --auth Individual
reference : visual studio mac for mac missing of identity class
In my development machine I can successfully deploy from Visual Studio 2015 to IIS 8.5 installed on Windows Server 2012 on my local network.
msbuild projectname.csproj
/p:VisualStudioVersion=14.0
/p:DeployOnBuild=true
/p:DeployTarget=MSDeployPublish
/p:MsDeployServiceUrl=https://myserver:8172/msdeploy.axd
/p:AllowUntrustedCertificate=True
/p:DeployIisAppPath=projectname
/p:Username=tc
/p:Password=pass
On my Windows Server I have installed msbuild, webdeploy and webdeploy for hosting services.
However, running the same command results in:
0 errors
1 warning (...Conflicts between different versions of the same dependent assembly...)
Build succeeded
And it doesn’t continue to deploy, no errors , no messages.
Do I have to resolve the warning message for msbuild to deploy or am I missing something else?
Thank you Microsoft for such a great verbose mode of this tool that says absolutely nothing when I tell it to deploy!!!
The solutions is here:MSBuild not triggering WebDeploy
It requires both folders to be present on the server:
C:\Program Files
(x86)\MSBuild\Microsoft\VisualStudio\v14.0\WebApplications
C:\ProgramFiles (x86)\MSBuild\Microsoft\VisualStudio\v14.0\Web
I was missing the second one (facepalm).
I am getting this error every time I try to install the on premises hybrid connection manager needed to run Hybrid Connections:
I'm running the Download and Install client from Windows Server 2012 R2 from IE 11 off the Azure website. I figured maybe installing Visual Studio 2013 may also resolve this error but no luck.
You can install the package in your local machine by using following command command prompt.
gacutil /i {Path(location where your package is present) assemblyname)
I have done fresh installation of Visual Studio 2013 - update 3 and have installed Visual studio 2013 MDA (Multi Device Application), and also have installed setup for Node js..
But when I create New Hybrid - Application project it shows me an error of "Node.js cannot be found"
Please help me..
You need to have NodeJS installed on your system.
Get the installer from this page: http://nodejs.org/download/
After installation you should also check if node command is usable the command line (cmd).
If it's not available you will need to manually add NodeJS to your path.
I don't have any kind of remote debuggers on my system. I don't know why all of a sudden I am getting this error:
The Microsoft Visual Studio Remote Debugging Monitor(MSVSMON.EXE) doesn't appear to be running on the remote computer
What could be wrong with Visual Studio 2012? I notice the Local Windows Debugger is not selectable either:
I can build projects, but can't run them from inside of Visual Studio. I'm on Windows 7 sp1 x64 and Visual Studio 2012 Ultimate.