Missing properties in VS2015 Debug - c#

Why can't I see properties of a COM object in debug mode in Visual Studio 2015. It works fine in VS2012. It's the same project so it should show the same??
Visual Studio 2012 (works fine)
Visual Studio 2015 (properties gone)

Try to Change the settings Please change the Debbuging Settings
In Tools -->Options---> Debugging--> enable the legacy C# and VB expression
evaluators.

Related

Sharing violation after opening a VS2017 project in VS/Mac 2017

I am trying to convert a project of mine from Visual Studio 2017 for Windows to Visual Studio 2017 for Mac. I can open the project file and the various C# classes in my project, but when I try to compile the project, I get this error.
The same code on VS2017 for Windows compiles without an issue. What am I doing wrong?

Getting the "Visual Studio Debug Engine Sample" running in Visual Studio 2017?

I'm trying to get the Visual Studio Debug Engine Sample running in 2017 Professional.
When I'm debugging according to the Walkthrough1.docx I can't see the Tools->Project Launcher menu.
The ProjectLauncherPackage doesn't seem to be loaded since my breakpoints is whited out.
This is what I did to make it work so far:
Updated the Windows SDK Version in the SampleEngineWorker;
Added
DiaStackWalkHelper::numberOfFunctionFragmentsForVA
DiaStackWalkHelper::functionFragmentsForVA
SymbolEngine::NumberOfFunctionFragmentsForVA
SymbolEngine::FunctionFragmentsForVA
Changed SampleEngine and ProjectLauncher to be x86
Updated source.extension.vsixmanifest
Install targets to 15,16
Dependencies to Visual Studio MPF 15.0
Added Microsoft.VisualStudio.Shell.Framework version 15 from nuget.

Mutation Testing Tools for Visual Studio 2015

Is there any mutation testing tools from C# on visual studio 2015?
Visual Mutator is not working with visual studio 2015 (link to github issue)
https://github.com/pavzaj/visualmutator
Please check my fork. It is not release ready, but somehow works with VS2015 and nunit 3.

Visual Studio 2010 Build server with VS 2013 Solution

I was wondering if it was possible to build (in release) a 2013 visual studio solution file within Visual Studio 2010.
Search engine is coming up with 2010 to 2013 related issues.
Thanks
First, you will probable need SP1 for Visual Studio 2010. Even then you need to refer to the Visual Studio 2013 compatibility page to determine if the scenario you are looking for is supported. It will depend on the exact type of project you are building, the version of framework you are using, templates you are using, etc.

Convert visual studio 2008 project to 2010

I am now working with a big project which is developed in visual studio 2008, SCSF and LINQ query. Now i want to upgrade my project to 2010. Is there any tool so that i can convert all of these to new technology?
It automatically upgrades your solution when you open it in Visual Studio 2010.
How to: Upgrade Projects Created in Earlier Versions of Visual Studio
1.In Visual Studio, on the File menu, click Open and then click Project/Solution, Web Site, or File, depending on the kind of project
you are upgrading.
2.In the Open Project dialog box, select a project file, and then click Open.
If Visual Studio detects that the project or file was created in an
earlier version of Visual Studio, the Visual Studio Conversion Wizard
opens.
3.Complete the Visual Studio Conversion Wizard.
This will work.

Categories