Disable search selection in Visual Studio

It has (Finally!!!) been fixed with an option. Following the vote link from acarlon : In Visual Studio 2015, you can prevent Visual Studio from automatically switching to search in Selection scope by unchecking the following tools-option: Tools-Options-Environment-Find and Replace-Automatically limit search to selection Great that the option is only on the automation . So …

Read more

How to use command line msbuild to deploy VS2012 Web Site project without precompiling it?

For website project the publish process is not plumbed into the build process. For website project since there is no formal build process there was nothing for us to really extend. Note: the below contents requires to have VS 2012 (or VS2010 for that matter) and the Azure SDK on top of that. The features …

Read more

ReSharper color identifiers screw up with Visual Studio 2012 dark theme

I had this same problem with vs2013 and resharper 8. I was able to fix by following these steps: Close all Visual Studio instances Open C:\Program Files (x86)\Microsoft Visual Studio {VS version}\Common7\IDE\Extensions\extensions.configurationchanged file Type anything there Save the file Open VS and check Fonts and Colors in Tools | Options | Environment source http://resharper-support.jetbrains.com/entries/26859128-ReSharper-Fonts-Colors-settings-do-not-appear-in-Visual-Studio-after-installation

Visual Studio 2012 warning MSB3026: Could not copy DLL files

This is generally a permissions issue with your bin directory. Navigate to it in Windows Explorer and make sure readonly is off. If you get an error changing the read status of the directory, make sure you’re running on an administrator-level account or elevate accordingly. Once write permissions are re-enabled, your build should work fine.

ASP.NET MVC 4 + Ninject MVC 3 = No parameterless constructor defined for this object

I know this is an old question but there don’t seem to be any real answers and I’ve worked around the problem so here is my solution: Create a custom controller factory: public class NinjectControllerFactory : DefaultControllerFactory { private IKernel ninjectKernel; public NinjectControllerFactory(IKernel kernel) { ninjectKernel = kernel; } protected override IController GetControllerInstance(RequestContext requestContext, Type …

Read more