2 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...

OSTools
1 min

Installing redcar under Linux

Installing redcar with sudo gem install redcar ends up in this error Building native extensions. This could take a while... ERROR: Error installing redcar: E...

Tools
1 min

Fast deletion of folders

Problem If you try to delete large folders with explorer it could run for several minutes. Also when you try to suppress the moving to recycle bin via SHIFT...

Tools
2 min

Productive Toolset for C# Developer

Programming Visual Studio ReSharper Agent Johnson Agent Smith StyleCop for ReSharper Keymaps SettingsManager Git Source Control Provider Gist NuGet Package M...

Tools
1 min

Be careful when Git suppresses bin Folders

Initial situation Often for Visual Studio projects the typical content of a .gitignore file contains this line bin or [B|b]in It is used to avoid that Git tr...

Tools
1 min

Find out the URL of a RSS feed in Outlook

Challenge In the past I added some RSS feeds to outlook. For one of these feeds now I would like to know the original URL. But this is not very intuitive to...

Tools
3 min

Converting Creole to HTML, PDF, DOCX, ..

Challenge We documented a project on Github with the Wiki there. For most articles we used Creole as markup language. Now we have to deliver a lot of the con...

Tools
1 min

Wise settings for Git

These settings reflecting my Git-environment. It a result of reading and trying several ideas of input from others. Must-Haves Aliases [alias] ci = commit st...

Tools
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 CodeTools
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#Tools
1 min

Review SmartAssembly from Red Gate

As an GWB-influencer I had the chance to review SmartAssembly. Because obfuscation is an important part in protecting intellectual property this review chanc...

Tools
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 CodeTools
1 min

Get Keymaps for ReSharper running

Keymaps for ReSharper is a nice tool and allows the user easily to learn short cuts of ReSharper. Unfortunally the last update is from january 2010. So the i...

Tools
1 min

Mercurial behind a proxy

For getting data with using a proxy simply modify the command with included –-config-parameter with proxy-information. So the original: hg clone https://ralf...

Tools
1 min

Hudson error: could not delete ..config.xml

Today we updated our Hudson CI-server. After changig job-configuration Hudson throws an error, that the config.xml could not be deleted. But the new entries...

Tools
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 AnalysisTools
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 AnalysisTools
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 AnalysisTools
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 AnalysisTools
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 AnalysisTools
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 AnalysisTools
1 min

Nice tools for I18N

Resource Refactoring Tool a nice tool under Visual Studio 2005 - but with Visual Studio 2008 a lot of peoples (including me) have troubles :-( Multi-Language...

Tools
1 min

HTML Help Compiler Error HHC3004

Today i had an error by building my sandcastle documentation project. After compiling during opening the output instead my chm-file in the help viewer the in...

Tools
1 min

Using images and cursors in resources

Often i see code-constructs like 1: try 2: { 3: string bitmapResourceName = GetType().Name + ".bmp" ; 4: Bitmap bitmap = new Bitmap(GetType(), bitmapResource...

C#Tools
1 min

Using ILMerge in a post build step

Offen also a simple application references some other assemblies. In those cases for a deployment all of these assemblies are needed. Instead giving the cust...

Tools
1 min

das SDK-Tool fuslogvw

Im Zusammenhang mit der Entwicklung eines eigenen BizTalk Adapters trat immer wieder das Problem auf, dass nicht klar war ob ein Assembly geladen wurde oder...

Tools