Error Installing Visual Studio 2015 Enterprise Update 1 with Team Explorer

Well I ended up opening a technical support case with microsoft to resolve my issue. They found the issue below in my log files: The actual problem During the VS 2015 install, there are couple of VSIX packages installed via custom action. For example: TeamExplorer.vsix is executed via custom action and TeamExplorer.vsix package installs the … Read more

Visual Studio 2013 – No Visual Basic/Visual C# Web Templates Installed

I think that “Re-install Visual Studio from scratch” is not a solution. I have faced with the described problem and found much faster way to fix it: First of all, try to repair Visual Studio installation (in “Control Panel\Programs\Programs and Features” find your Visual Studio, right-click and select “Repair”). Reboot after (!). Check if template … Read more

Xamarin – How to update Mono.Android version to resolve dependencies?

tried changing my target android version to 8.1 You need to change the Target Framework that is used to compile your android application, not the Target Android version (but assumably you would set these two to the same, read the Understanding Android API Levels link below. Visual Studio for Windows: Visual Studio for Mac: Target … Read more

Visual Basic Capture output of cmd

More than one problem. First off, as @shf301 already told you, you forgot to read stderr. He in turn forgot to add an extra line: Process.Start() AddHandler Process.OutputDataReceived, _ Sub(processSender As Object, lineOut As DataReceivedEventArgs) output += lineOut.Data + vbCrLf End Sub Process.BeginOutputReadLine() AddHandler Process.ErrorDataReceived, _ Sub(processSender As Object, lineOut As DataReceivedEventArgs) output += lineOut.Data … Read more

VS: unexpected optimization behavior with _BitScanReverse64 intrinsic

AFAICT, the intrinsic leaves garbage in index when the input is zero, weaker than the behaviour of the asm instruction. This is why it has a separate boolean return value and integer output operand. Despite the index arg being taken by reference, the compiler treats it as output-only. unsigned char _BitScanReverse64 (unsigned __int32* index, unsigned … Read more