Denis Proshutinskii

Results 30 comments of Denis Proshutinskii

Library need to use multi-targeting and add `net461`, `netcoreapp2.0`, `uap10.0` or maybe others to list of targets. [Docs](https://docs.microsoft.com/en-us/dotnet/standard/library-guidance/cross-platform-targeting#multi-targeting)

Hello everyone. I'm new to F# and learning it. I've solved problem by adding System.Data.SqlClient to project: ```xml ``` but got this: ![Screenshot from 2019-12-07 14-28-45](https://user-images.githubusercontent.com/36221916/70370765-fa19aa80-18fd-11ea-8bab-511d3599205c.png) The most strange thing...

If I understand you right, you need to save your state across application launches. If you need to save layout in terms of docking, I can't help here. I'm using...

I've never really used Drag&Drop in my applications, so had to google for it. Found this [StackOverflow questions](https://stackoverflow.com/questions/63274054/why-dragdrop-with-files-doesnt-work-in-a-window-of-an-avalonia-application) to see how this should work Few extension methods ```fsharp [] module...

> User input operations like text input, pasting, etc are likely to remain stable in Avalonia Text input is one of areas that will change before 1.0 release https://github.com/AvaloniaUI/Avalonia/issues/3538. As...

Nuget for some time have [prefix preservation](https://docs.microsoft.com/en-us/nuget/nuget-org/id-prefix-reservation) that forbids packages from anyone to be in form `System.ABC` or `Avalonia.ABC`. Because of this package have to be named FuncUI.Avalonia or we...

Duplicate of https://github.com/fsharp/fslang-suggestions/issues/1083 and this comment https://github.com/fsharp/fslang-suggestions/issues/1083#issuecomment-938616233

@oleksandr-bilyk this example looks like a worse alternative to tuples with named fields https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/builtin-types/value-tuples#tuple-field-names. Also I don't see what's wrong with anonymous records for such case, even allocations doesn't matter...

> One of the problems that we had in V1(using option parameters) was the that the info tooltip was massive showing dozens of parameters . You could not even see...

> > Maybe it's a tooling problem then? > > Not really(Even if we update the various toolings(code, rider and vs) and no show optional parameters, they now becomes non...