1 min

Activating RDP access for Windows 10

Today I’ve installed the Technology Preview of Windows 10 onto my Xen Server. With the XenCenter program under an existing Windows 8.1 installation it was an...

OS
1 min

Setup license stuff for PostSharp 2.1

Problem Normally PostSharp runs fine on unattended build servers. So on our global Jenkins continuous integration server PostSharp does the job. But on my lo...

Clean Code
1 min

xUnit runner eats system diagnostic output

Problem When using xUnit and constructs like Debug.WriteLine the DbgView-tool does not show the written output anymore. Solution Add a new Listener – for exa...

C#
2 min

Let ReSharper and xUnit work together

Getting the ressources First at all download xUnit http://xunit.codeplex.com/releases/ xUnit Contrib ReSharper http://xunitcontrib.codeplex.com/releases/ Thi...

Clean Code
1 min

Searching the new FxCop-Release (10.0)

Today my FxCop-GUI stated, that a new release is available – but the link to this release is broken. After googling a little bit i realized, that the new rel...

Code Analysis
2 min

My own set of SuppressMessage-lines

StyleCop issues inheritedoc-comment Using <inheritdoc />-comment is not recognized by StyleCop. So this needs a suppression: // <inheritdoc /> [ SuppressMess...

Code Analysis
1 min

Installing StyleCop for ReSharper

Installing StyleCop for ReSharper under an administrative account does not activate this ReSharper plugin under my developer account. A system analysis show...

Code Analysis
1 min

AgentSmith: suppressing spell checking warnings

If AgentSmith throws a warning that some term is not spelled correctly for this term the spell checking could be suppressed with: //agentsmith spellcheck dis...

Code Analysis
2 min

Working with Microsoft FxCop

Run FxCop as a post build event Since FxCop 1.36 it is possible to include FxCop in a post-build event. So FxCop runs after compiling in Visual Studio and al...

Code Analysis
1 min

ReSharper is not available

Today a colleague ask me to help. On his system all ReSharper menus are grayed out. Also the Visual Studio Add-In Manager does not show this add-in. He tried...

Code Analysis
1 min

Using images and cursors in resources

Use strongly typed image and cursor resources in .NET applications to catch missing or renamed resources earlier and avoid fragile runtime lookups.

C#