Have Visual Assist X disabled by default? [duplicate] - visual-studio

This question already has answers here:
Disable Visual Assist X for certain project types
(2 answers)
Closed 8 years ago.
Is there a way that when Visual Studio Starts have Visual Assist disabled and enable it when I need it?
I mostly work with C# projects and for that I use Resharper. However when I am working with C++ I would like to use Visual Assist and only then I would like to enable Visual Assist.
Is it possible to achieve that?

You can disable Visual Assist for certain file extensions:
Open Visual Assist's options menu
Click on "Projects and Files"
Type .cs to the editbox next to "Extensions to Ignore:"
Hope this helps.

Related

XAML designer Visual Studio 2017 [duplicate]

This question already has answers here:
Is there a designer for Xamarin xaml files?
(4 answers)
Closed 4 years ago.
The XAML Designer does not work at all. I tried all possible solutions to the problem. Double reinstalled Visual Studio, but it did not help. I even put on Windows 7 and there also a couple of times reinstalled the Visual Studio. I click through the right button in the menu, but I get only raw code. Now it gives an error "it is not possible to open this editor". Visual Studio 15.7.4, xamarin.forms.
Actually there is no XAML designer for Visual Studio.
I have gotten the xaml preview to work, but it only does so on simple Xamarin components. I've never seen it work on custom components. This has been a problem for years. Unfortunately, I gave up and now just test xaml by running the App. I have not tested it out, but there is a Xamarin form inspector available if you upgrade to enterprise addition.

Put only one bracket in Xamarin Studio

I have a problem. At the time of writing the code in Xamarin Studio when I put the bracket it's only put open, but I would like to put both an open and a closed set. How would I do it?
I would suggest, you use the best and powerful ide from Microsoft,
Visual Studio https://www.visualstudio.com/downloads/
Just click the Mobile .Net Development upon installation and you'll have Visual Studio with Xamarin. :)

How do I determine the correct Visual Studio version for source? [duplicate]

This question already has answers here:
How can Visual Studio determine a solution file's version?
(3 answers)
Closed 2 years ago.
I am retrieving old programs from source control & visual studio tells me that the source needs to be converted.
How can I tell which version of Visual Studio is required to open a source without conversion?
The easiest way to do this is to open the solution file in your text editor of choice which will give you the version of visual studio in the header like
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.24720.0
MinimumVisualStudioVersion = 14.0.24720.0
Then look that up somewhere like this table (https://en.wikipedia.org/wiki/Microsoft_Visual_Studio#History)
To find out the correct version

Automatically "Attach to Running Process" in Visual Studio 2012/2013 [duplicate]

This question already has an answer here:
Automate "Attach to Process" in Visual Studio 2012 [duplicate]
(1 answer)
Closed 6 years ago.
I have to debug in Visual Studio 2013 a site hosted on local IIS.
For that purpose I sistematically use the "Debug -> Attach to Process -> w3wp.exe".
I saw some macros solutions, like this one, that should work for the Visual Studio versions prior to VS 2012...
Is there a way to do something on that point in the recent versions of VS?
Two plugins that do this:
Debug Attach Manager
Find it here: VS2012 and VS2013
Indeed after initial selection of workers it's a simple Ctrl+Shift+Alt+F5 to re-attach the same.
The plugin handily shows the title of websites with the workers.
VSCommands
Find it here: VS2012 and VS2013
This is a larger plugin, which is quite popular, and has similar features but arguably more beautiful UI:
In VS 2013, Go to Tools-> Attach to procress-> select iisexpress.exe

Is It possible to start VS 2008 without resharper? [duplicate]

This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
Disable, but not uninstall Resharper 4.x onwards
i have a full licensed version of resharper on my VS2008 but sometime i need to start VS without it, there is a way to do so without uninstalling ?
You can run the Visual Studio in safe mode, using the /SafeMode switch from the command line:
"C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\devenv.exe" /SafeMode
This will disable all third-party packages and add-ons, and prevent them from loading.
If you find yourself needing to do this frequently, you can even create a new shortcut and add this switch to the target path so that double-clicking that shortcut automatically opens Visual Studio in safe mode.
http://confluence.jetbrains.net/display/ReSharper/Suspend+ReSharper+5+in+Visual+Studio
As a varient you can suspend resharper. Type in command window "ReSharper_Suspend"

Resources