Search Results

1
vote

Common Files in Visual Studio Solution

Thanks @aku! I knew this could be done, but I didn't know how to do this from Visual Studio. It shows up as a shortcut to the file and the csproj file generates the resulting XML like this: …
3
votes

Tips and tricks for working with Microsoft Visual Studio solutions and project

I'm a huge fan of using msbuild to build my solutions with the /m option so that it builds using multiple cores. It can drastically decrease your build time. Scott Hanselman posted on how t …
3
votes

Which language should I pick up: VB.Net or C#

If possible, both :) If just one, then I'd go with C# myself. If you use the feature that Visual Studio 2008 added to be able to download the source for reference, you'll notice that it is …
1
vote

Resharper and ViEmu Keybindings ( and Visual Assist )

I use both as well, but I'm using the IntelliJ keybindings instead, so I can't speak specifically to the Visual Studio bindings. …
3
votes

Visual Studio debugger tips & tricks for .NET

Tools -> Attach To Process - easy to forget, but with it I can debug script in web pages, managed code loaded up in another process (think an add-in model), or even unmanaged code. Be careful with …