core
core copied to clipboard
WebSharper - Full-stack, functional, reactive web apps and microservices in F# and C#
New language features: (See [What’s new in C# 13](https://learn.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-13)) - [x] `params` collections - [x] Tests added - [ ] Implicit index access (needs Index type support first, see #1223)...
I'm taking a new look at a project I had done with WS5. I'm working on linux. I've installed the latest WS8 from the repo: ``` ``` and set the...
This currently has no effect: `[] new() = MyClass(0)` With the constructors generated as static method helpers when multiple constructors are present, the Name attribute should be ideally used, not...
Hello, Running this code gives: ```fs printfn $""" TimeSpan.MinValue.Ticks (WebSharper): %A{System.TimeSpan.MinValue.Ticks} TimeSpan.MinValue.Ticks (.NET): -9223372036854775808L TimeSpan.MaxValue.Ticks (WebSharper): %A{System.TimeSpan.MaxValue.Ticks} TimeSpan.MaxValue.Ticks (.NET): 9223372036854775807L Big TimeSpan value (WebSharper): %A{System.TimeSpan.FromDays(10675199).Ticks} Big TimeSpan value (.NET): 9223372036854775807L...
Doing a `websharper-web` build (most likely same on other templates too) with the latest (8.0.0.517-beta2) compiler triggers both `fsc` and `wsfsc` from subsequent build targets. This is not ideal as...
Most common Sitelet contents are produced asynchronously but then rendered synchronously via `Content.Page`, which uses the `WebSharper.Core.Resources.HtmlTextWriter` helper to render the page contents. ANC needs asynchronous writes to the response...
After update to WebSharper `8.0.0.512-beta2` WebSharper build fails with following errors:  As can be seen in the screenshot the errors do not include any information on filename or line...
Hello, I am using a custom `QUnit` binding for my project ```fs namespace WebSharper.QUnit open WebSharper open WebSharper.JavaScript module Resources = [] type QUnit() = inherit Resources.BaseResource("https://code.jquery.com/qunit/", "qunit-2.24.1.js", "qunit-2.24.1.css") []...
Hello, While working on #1434 I had to re-run/re-build the tests project a lot of times which takes around 1min20 to build. It would be nice, if there was an...