Loïc Denuzière
Loïc Denuzière
I've recently needed something like the following: ```rust #[derive(Debug, Error)] enum Error { /// Unknown target: {} #[error(no_from, non_std)] UnknownTarget(String), } ``` so that `UnknownTarget("foo".to_owned())` would have "Unknown target: foo"...
The use of `Date.getTime()` in the proxy meant that `DateTime` values weren't always represented as UTC. This fixes this discrepancy. It _might_ also fix remoting #636; I haven't yet tested...
In `Html` project mode, `context.Link()` adds a .html suffix to URLs, so that the link points directly to a generated file. However some hosts (like GitHub pages) can also serve...
This would be useful especially for interacting with back-ends like Owin and Suave. - Avoidable uses of `System.Web`: | File | Is public API | Class | Possible replacement |...
This would allow deserializing optional JSON fields to something else than an `option` type. For example: ```fsharp type MyRecord = { [] x: int y: string } Json.Deserialize """{"x": 1,...
The prototype chain is not set correctly. The following code: ```fsharp [] type ParentClass() = class end [] type ComponentClass() = inherit ParentClass() ``` should generate this: ```js ComponentClass=Runtime.Class({},ParentClass,ComponentClass); ComponentClass.New=Runtime.Ctor(function()...
* ArchLinux * Mono 5.12.0 * dotnet SDK 2.1.300 * command run: `./build.sh` Error: ``` /home/tarmil/.nuget/packages/microsoft.net.compilers/2.8.2/tools/Microsoft.CSharp.Core.targets(52,5): error MSB3883: Unexpected exception: [/home/tarmil/websharper/tests/WebSharper.CSharp.Sitelets.Tests/WebSharper.CSharp.Sitelets.Tests.csproj] /home/tarmil/.nuget/packages/microsoft.net.compilers/2.8.2/tools/Microsoft.CSharp.Core.targets(52,5): error : System.ComponentModel.Win32Exception (13): Permission denied [/home/tarmil/websharper/tests/WebSharper.CSharp.Sitelets.Tests/WebSharper.CSharp.Sitelets.Tests.csproj] /home/tarmil/.nuget/packages/microsoft.net.compilers/2.8.2/tools/Microsoft.CSharp.Core.targets(52,5):...
If a user writes something like this in their runtime configuration: ```json { "websharper": { "WebSharper.JQuery.Resources.JQuery": "https://code.jquery.com/jquery-3.2.1.min.js", "UseDownloadedResources": true } } ``` then the expected behavior would be: download jQuery...