Tag Archives: Visual Studio

How to execute ms tests in parallel on multi-cpu / core machines

VS 2010 supports running MS Tests in parallel. Most of the machines available in the market are multi-cpu / core machines. This will help us to increase the number of tests executing in same time, which will reduce total test … Continue reading

Posted in .Net, Unit Testing, Visual Studio | Tagged , , , , , | 1 Comment

Open Visual Studio Files As Administrator

Debugging WCF service requires to run the visual studio as Administrator, you can do it by right clicking the Visual Studio shortcut, Select Properties, and in Shortcut tab, click on Advanced button, it will display Advanced Properties, check the Run … Continue reading

Posted in Miscellaneous, Visual Studio, Windows 7 | Tagged , , , , | Leave a comment

CSC : error CS1548: Cryptographic failure while signing assembly xxx.dll Error signing assembly — Access is denied

Yesterday I got this error while building my application after installing Windows 7 x64. I thouoght it was because of X64 OS, but later I found it doesn’t have anything to do with X64 OS. I don’t know the actual … Continue reading

Posted in .Net, .Net 4.0, Uncategorized, Visual Studio | Tagged , , , , , | Leave a comment

Changing the diff program used by Visual Studio

You can configure your own diff program, instead of the default diff program provided from Microsoft for comparing two files. In this post I am using Beyond Compare. Open Visual Studio 2010 Select Tools > Options menu. Select the Source … Continue reading

Posted in Uncategorized, Version Control, Visual Studio | Tagged , , , , , | Leave a comment

Create your own code snippets in Visual Studio

Code snippets in Visual Studio is nice feature. This will help developers to increase productivity. You can insert a code snippet by typing the shortcut and press the TAB twice. You can get installed code snippets from Tools > Code … Continue reading

Posted in Visual Studio | Tagged , , | 2 Comments