Xaver Schulz
Xaver Schulz
I can reproduce the issue with HttpContext.Response.Body stream. The problem is that the underlying Stream implementation does not support the Position property. But the SkiaSharp implementation call this property in...
Do you want a static utils class with different methods like IsFile, IsRelative, ... ? In the dotnet framework are much of this methods still implemented, in different namespaces and...
@peters I think you do not need the Mono.Cecil package, you can get the TargetFrameworkAttribute easily via reflection. ``` c# var ass = Assembly.LoadFrom(""); var target = (TargetFrameworkAttribute)ass.GetCustomAttributes(typeof(TargetFrameworkAttribute), false).FirstOrDefault(); if(target!=null)...
Maybe you can use [Squirrel.Windows](https://github.com/Squirrel/Squirrel.Windows) an easy to use installer and updater framework
Dynamic object resolver ignores inherited members when `MessagePackObject.KeyAsPropertyName` is true
I debugged this problem a bit and think find out what's the issue here. It has to do with the inheritence and the private setters at properties at the base...
Inside the GetLink Method UriBuilder is used with the Path property. To add the part after the hash in an unencoded way the Fragment property from UriBuilder must be used....
I found a good regex on SO that solve the described problem: http://stackoverflow.com/questions/861409/wpf-making-hyperlinks-clickable But of course further tests needed and also the regex must be extended to support protocols like...
For the needed AForge Assemblys current Nuget packages can be used: - AForge - AForge.Video - AForge.Video.DirectShow
At the moment it is not possible but I think it can be implemented. But settings should only applied for records. Feel free to provide a PR.
Hi @kmr299 this is a known limitation of the dotnet client. At the moment I'm not really sure how to solve it in an easy and useful way. You are...