I'm just getting started with Visual Studio (2010 Beta) and have some basic questions that I'm sure have easy answers:
When looking at sample code I often have a hard time finding the right things to add references to. For instance, a sample program opens
System.ServiceModel.Web
but I can't find the required reference.Web
doesn't exist inSystem.ServiceModel
reference. More generally, there doesn't seem to be a one-to-one match between namespaces that I see in code and the references to dlls I need add. The add references dialog has no search functionality so I find myself scrolling around trying to find the right dll. Is the a better way? Specifically, where'sSystem.ServiceModel.Web
?Since I'm experimenting a lot, I often have many files that have all sorts of compile errors floating around. When a try to build my project things explode with errors I'm not interested in. Is there any way to build just one file in a project? Even errors in F# script files give me compile errors when I compile a project, even though they are just experimental notes.
Is there a way to "Debug" and run just one project in a solution, not the entire solution? When I click debug, all these random projects start that I'm not interested in at the moment.