In Visual Studio (2008) is there a way to have a custom dependent file on another custom file?

There is VSCommands add-in which allow you to configure dependant files directly from IDE Link updated, previous was http://mokosh.co.uk/vscommands FYI: When VSCommands is installed, just select all the files you want to be Dependant and the root file, then Right Click -> Group Items… and VSCommands will ask which of the files you would like … Read more

Recommended number of projects in Visual Studio Solution

I’ve worked on products on both extremes: one with ~100 projects in a single solution, and one with >20 solutions, of 4-5 projects each (Test, Business Layer, API, etc). Each approach has its advantages and disadvantages. A single solution is very useful when making changes – its easier to work with dependencies, and allows refactoring … Read more

debugging with visual studio using redirected standard input

This is a supported debugging scenario. You do have to make sure that the debugger can find the file. Leave the Command setting at $(TargetPath). A possible value for the Command Arguments setting is: < “$(ProjectDir)test.txt” if the input file “test.txt” is located in the project directory. Or type the full path of the file … Read more

Will Web Deployment Projects still be available in Visual Studio 2012?

Web Deployment Projects will NOT be available in VS2012. Instead we will focus on bringing first class publishing support for Website projects. You can read more details at http://blogs.msdn.com/b/webdev/archive/2012/08/06/plans-regarding-website-projects-and-web-deployment-projects.aspx. In a nutshell, you will have all the same features that WDP has, but a lot more as well. Also another good thing about this is … Read more