corliss
corliss
I'm trying to switch a particular assembly, `Xamarin.Forms.Platform.UAP`, to a project, so that I can debug into it. The source for this assembly is part of a public github repo....
ReSharper supports [this](https://blog.jetbrains.com/dotnet/2015/04/15/c-6-0-support-in-resharper-9-1/) very useful refactoring: ```C# if (a != null && a.b != null) { } ``` to ```C# if (a ?.b != null) { } ``` In Resharper...
C# supports both ```C# void Foo() { Bar(); } ``` and ```C# void Foo() => Bar(); ``` The extension does not support refactoring the block into the expression-bodied member, when...
Looks like the code has the sense of the boolean inverted. If I set `IsOpen= true`, the menu should open, not close. ``` public bool IsOpen { get { return...
I'd like to help fix #22. I have not debugged a visual studio extension before. I understand that there is a way to run Visual Studio itself under the debugger,...
I found a stackoverflow [question](http://stackoverflow.com/questions/14505548/nunit-test-cases-not-run-from-inherited-class) that discusses this very issue. That question has to do with the ReSharper test runner, but the same buggy behavior exists in the NUnit VS...
It looks like Windows, Mac and Linux are currently supported, is this correct? What would it take to support Xamarin.iOS, Xamarin.Android and Windows 10 Universal? It would also be very...
Just checking in to see whether the discussion in #7 is still alive. I am finally concentrating solely on using SharpFont and SharpFont.HarfBuzz. This issue is to help reboot the...