Luke Skinner

Results 10 comments of Luke Skinner

https://github.com/themotleyfool/NuGet.Lucene/blob/bfb950418a939fab5183dcc0c0136a2e1e7e3df5/source/NuGet.Lucene/Util/PackageExtensions.cs ``` public static bool HasSourceAndSymbols(this IPackage package) { var hasSymbols = package.GetFiles() .Any(pf => string.Equals(Path.GetExtension(pf.Path), ".pdb", StringComparison.InvariantCultureIgnoreCase)); return hasSymbols && package.GetFiles("src").Any(); } ``` My first guess would be this...

I got some screenshots from Telegram to hopefully help with this a bit more. You can see more of the logs for the errors reported originally. ### 1 ArangoError: unique...

On a new test project I was able to get this working using the 0.2.0 version of the MaterialSkin NuGet package. Steps to configure the MaterialTabControl: 1. Add a MaterialTabSelector...

There is a MaterialSkinManager which allows you to change the theme and color scheme - you can find the source code for the demo application at https://github.com/IgnaceMaes/MaterialSkin/tree/master/MaterialSkinExample. [Album of themes/colors...

I'm also having the same issues with this, I've spent a lot of time trying to see if I can override the web browser to be WebView2 but have not...

Thanks for the heads up about WAM, I'm using Microsoft.Data.SqlClient which uses this library as a dependency so I don't have easy access to the classes such as 'PublicClientApplicationBuilder'. I...

We recently moved onto the graph API due to the deprecation/turned off the ability to use EWS with modern auth. We're just finding this Microsoft.Graph.dll file is bigger than the...

@zelodyc I'm not related to this project but I wanted to say thanks for the effort you put into this PR! For anyone who wants to use Agile Boards/Sprints without...

I have found an area of slowness during profiling of deltas on packages similar size to what was originally reported. https://github.com/Squirrel/Squirrel.Windows/blob/51f5e2cb01add79280a53d51e8d0cfa20f8c9f9f/src/Squirrel/DeltaPackage.cs#L291 ``` File.Move(tempTargetFile, finalTarget);``` This goes off to the windows...

I don't want to stir anything but I am using this library in WPF so that doesn't help me too much anything electron specific. The delta system is pretty great...