Category Archives: Visual Studio

Debugging NUnit Tests in Visual Studio 2010

If you are using NUnit with .Net 4.0 assemblies in Visual Studio 2010, while debugging, you will get this warning from breakpoints locations, “The breakpoint will not currently be hit. No symbols have been loaded for this document” This issues … Continue reading

Posted in .Net, .Net 4.0, Unit Testing, Visual Studio, Windows 7 | Tagged , , , , , | Leave a comment

Test impact analysis in Visual Studio 2010

Test impact analysis helps developers to identify which all tests should run after code changes. This feature only available in Ultimate and Premium editions and only works with Managed code. Create a class library project, it is our production code, … Continue reading

Posted in .Net, .Net 4.0, Unit Testing, Visual Studio | Tagged , , , , | Leave a 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

How measure get code coverage by PartCover with MSTest

If you are using VS 2010 Premium or Ultimate, you can get the code coverage from VS itself (You can find more posts related to code coverage here.). But if you are using Professional or less, you won’t get this … Continue reading

Posted in .Net, .Net 3.0 / 3.5, .Net 4.0, Unit Testing, Visual Studio | Tagged , , , , , | 6 Comments