Tag Archives: C#.Net

How to write an NUnit Addin

From version 2.2.x NUnit supports AddIns. Addins can customize NUnit’s internal behavior such as the creation of tests and their execution. An Addin should to implement the interface NUnit.Core.Extensibility.IAddin, which can be found in the assembly nunit.core.interfaces. Also the NUnit.Core.Extensibility.NUnitAddinAttribute … Continue reading

Posted in .Net, Miscellaneous, Unit Testing | Tagged , , , , | 1 Comment

How to use .Net assembly in VBScript

Few days before I got a requirement to use a .Net assembly in VBScript, but it was not working. But today I got the solution. It was related to my 64bit OS. In this post I am discussing how to … Continue reading

Posted in .Net, .Net 3.0 / 3.5, .Net 4.0, Visual Studio, Windows 7 | Tagged , , , , , | 1 Comment

How to configure a WCF service to use Port Sharing

Windows Communication Foundation (WCF) provides a new TCP-based network protocol (net.tcp://) for high-performance communication. WCF also introduces a new system component, the Net.TCP Port Sharing Service that enables net.tcp ports to be shared across multiple user processes. Yesterday I got … Continue reading

Posted in .Net, .Net 3.0 / 3.5, .Net 4.0, WCF | Tagged , , , , , | 1 Comment

MSTest.exe does not deploy all items

Today while working on some regression build issues, me and my lead noticed one problem with MS Tests, we are running MSTest.exe from commandline to execute few tests. The problem was MSTest.exe was is not copying all the referenced assemblies … Continue reading

Posted in .Net, Miscellaneous, Unit Testing | Tagged , , , , | 1 Comment

How to debug Windows Live Writer plugins

This is final post related to live writer plugins and its about debugging the Live writer plugins. While developing I don’t think there is a way we can debug the plugin code. This is after deployment. Initially I faced one … Continue reading

Posted in .Net, Miscellaneous, Visual Studio, Windows Forms | Tagged , , , , | Leave a comment