Search Results

4
votes
7answers
2k views

Why isn’t my custom WCF behavior extension element type being found?

I have a solution that contains two projects. One project is an ASP.NET Web Application Project, and one is a class library. The web application has a project reference to the class library. Neithe …
3
votes

How do I find out what directory my console app is running in with C#?

In .NET, you can use System.Environment.CurrentDirectory to get the directory from which the process was started. System.Reflection.Assembly.GetExecutingAssembly().Location will tell you the locati …
0
votes

Where can I find Microsoft assemblies that are not already in Visual Studio?

If you're trying to add the assembly to the ".NET" tab in the Visual Studio "Add References" dialog box, there's a registry setting you need to make. …
0
votes

Unit testing the app.config file with NUnit

The simplest option is to wrap the methods that read configuration such that you can substitute in values during testing. Create an interface that you use for reading config and have an implementat …
0
votes

How to turn off warning for no xml comment in VS 2005

You can either turn off the documentation generation for the whole project in the project properties (you'll need to do that for each build configuration), you can disable the warnings on the whole …
3
votes

Localizing system generated status messages

Log event identifiers rather than messages. Capture event specific data along with the event identifier. When a user views the log, localize the event message based on the u …
1
vote

Why isn’t my custom WCF behavior extension element type being found?

Per the workaround that Microsoft posted on …
3
votes

Rhino Mocks, TypeMock, Moq, or NMock? Which one do you use and why?

I'm a big fan of Typemock Isolator and use it both for my personal/open source projects and for work. The big benefit I get is the ability to test all of the bits that interface with sealed/static/ …