Andreas Gullberg Larsen
Andreas Gullberg Larsen
Aha, typing this all out helped me figure it out. I am trying this out inside my `c:\dev\unitsnet` project. In that project, there is a `Directory.Build.props` file with ```xml $(MSBuildThisFileDirectory)obj/$(MSBuildProjectName)...
Turns out I had to add `bin/$(Configuration)` to my `Try.csproj`, as logs complained it could not find `Try.dll`. Revised the title of this issue to reflect this. I am no...
I just worked around the same issue by defining the PlotModel in XAML instead of in VM, so the PlotModel belongs to the view, not the view model. I think...
http://docs.oxyplot.org/en/latest/getting-started/hello-wpf-xaml.html ``` xaml ```
The InvalidateFlag is changed in VM whenever it needs to redraw the entire thing, such as when new points are added to the series. Similar to calling `Invalidate` methods on...
> I can reproduce the issue only when using `IHostedService`, but if I disable that, all is good. I just reported a similar bug, related to Task.Delay in `IHostedService.StopAsync()`: Deadlock...
Edit `parrot/draft.toml` and change line 9 to: ``` dockerfile = "Dockerfile" ``` I'm new at this, but this seems to work here at least. On Windows, using git for windows...
FYI, here is the pull request of the changes I mentioned. https://github.com/fyhertz/libstreaming/pull/150
Does this fix the following bug? `vrb` generates ``` c# private readonly type fieldname; ``` instead of ``` c# private readonly bool fieldname; ```
I recently discovered that `nb` and `ob` also exists that are somewhat overlapping. ``` C# private bool fieldname = false; ``` ``` C# private readonly bool fieldname = false; ```...