BSiLabs / HttpTracer

MIT License
172 stars 13 forks source link

On the Build method, accept parameters for the user to choose his custom preferences #3

Closed DanielCauser closed 5 years ago

DanielCauser commented 6 years ago

Preferences such as:

ChaseFlorell commented 6 years ago

I've done some preliminary digging, and there's no way to automagically change the color of the text in the output window.

Initially I tried this, but it didn't affect the output

Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine(myText);
Console.ResetColor();

If you still want this functionality, it'll definitely work in a console app (exe), but won't make any difference to the Output window.

Also, I took a run at #1 and found that we can't do that either since the libs required are not compatible with iOS or Android. I'm not even sure how we'd write a facade to achieve it.

DanielCauser commented 6 years ago

I believe this is not doable for the first release, we might want to think os making a VS extension, so we can make it look awesome, something very similar to fiddler, I would boldly say.

dylanberry commented 5 years ago

Closing - out of scope for this library/project. #34 should cover preferences.