Skip to content

Instantly share code, notes, and snippets.

@markcoleman
Created January 24, 2013 21:01
Show Gist options
  • Save markcoleman/4627686 to your computer and use it in GitHub Desktop.
Save markcoleman/4627686 to your computer and use it in GitHub Desktop.
Fix for our CI server when using NancyFX Testing
public class TestableBootstrapper : ConfigurableBootstrapper
{
public TestableBootstrapper(Action<ConfigurableBoostrapperConfigurator> action): base(action)
{
}
protected override byte[] FavIcon
{
get
{
return new byte[1];
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment