Browse by Tags
All Tags »
Visual Studio (
RSS)
Did you know Visual Studio will download any changes made by another person when you check out? When you go to make a change to the file, or select the check out option, Visual Studio gets the latest file for you and prompts you that other changes were...
VS provides a debugging challenge when it comes to inline property declarations as such as this: DataRow row = table.Rows[0]; var obj = new SomeClass { ID = GetValue<int>(row, "ID"), Name = GetValue<string>(row, "Name"...
Since .NET 2.0 and Visual Studio 2005, the ability to encrypt the config file has been possible. This functionality is built-in to the aspnet_regiis.exe utility. This executable uses flags to designate a few items: -pe for encrypting web projects registered...
Apparently the same workspace name for two different TFS servers is an issue. I downloaded a new project from the codeplex site, and gave it the same workspace name as a different TFS project. When I opened the project that has had no problems for years...
I had an issue where I had a locked file in VS 2008, and I couldn't compile a project because it couldn't copy a DLL from obj/debug to bin folder. Something that worked for the issue was something Roy Osherove posted about here: http://weblogs...
Recently, when adding WPF features to a windows class library I created, I ran into an issue where there was an error with the InitializeComponent method of the WPF user control in Visual Studio 2008. I couldn't figure out why this was an error, as...