I’m running Windows 7 Ultimate (64 bit) using Visual Studio 2010 RC. I recently decided to have VS run/debug my apps on IIS rather than the dev server that...
The Microsoft .NET Framework 4.0 full installer (32- and 64-bit) is 48.1Â MB and the Client Profile installer is 41.0Â MB. The extracted installation files are 237Â MB and 194Â MB respectively, and...
I love tuples. They allow you to quickly group relevant information together without having to write a struct or class for it. This is very useful while refactoring very...
I Installed DotNetOpenAuth SDK-3.4.5.10201.vsix and I can’t get it working. It works locally (when I run as localhost) but when i try to publish it ain’t working. The IIS...
Trying to build my project on the build server gives me the following error: Microsoft (R) Build Engine Version 4.0.30319.1 error MSB4019: The imported project "C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v10.0\TeamData\Microsoft.Data.Schema.SqlTasks.targets" was...
I have a project in which I’d like to use some of the .NET 4.0 features but a core requirement is that I can use the System.Data.SQLite framework which...
For Visual Studio 2010 Web based application we have Config Transformation features by which we can maintain multiple configuration files for different environments. But the same feature is not...
The ExpandoObject class being added to .NET 4 allows you to arbitrarily set properties onto an object at runtime. Are there any advantages to this over using a Dictionary<string,...