Nick Darvey

Results 39 comments of Nick Darvey

I just had the same question. It looks like you might be able to do nested union types? https://github.com/fsbolero/Bolero/blob/fd1564c4f738d586f5669ca13bce477c8a07ee37/tests/Unit.Client/Routing.fs#L32 https://github.com/fsbolero/Bolero/blob/fd1564c4f738d586f5669ca13bce477c8a07ee37/tests/Unit.Client/Routing.fs#L51-L55

...although having tried this myself there's some limitations. For example: ```fsharp module Home = [] type Page = | [] Resources of wid : Workspaces.Id * Resources.Page module Resources =...

I think the `dotnet new` template creates a 'Blazor WebAssembly Hosted'. To truly break the dependency I think you'd need to use 'Blazor Web Assembly Standalone' and publish the artefacts...

If there's any work being done on the project system, please also consider making it compatible with [props and targets from NuGet packages](https://docs.microsoft.com/en-us/nuget/create-packages/creating-a-package#including-msbuild-props-and-targets-in-a-package). Right now NuGet doesn't generate a `obj/*.sfproj.nuget.g.targets`...

We're seeing the same thing. ## Repro ``` # first install the execution role aws cloudformation create-stack \ --template-url https://community-resource-provider-catalog.s3.amazonaws.com/community-servicequotas-s3-resource-role-0.1.0.yml \ --stack-name community-servicequotas-s3-resource-role \ --capabilities CAPABILITY_IAM aws cloudformation wait stack-create-complete...

@IanMExtend you should give it another go now. It looks AWS resolved the issue.

It seems like you're leaning toward tighter integration with Fable (given the name change) but as there's a few projects out there now using Elmish but not Fable, might you...

That's a very good insight, thank you for sharing. I've added AsyncRx to my project, I'll see if I can use a similar pattern to what you've done here.

I'm not sure I understand. Right now, by default, here's a `name:tag` combo being generated from the project name and used for the Docker image build and push. You can...

# Intent Perhaps we should outline the intent of introducing `IQStreamable`. Are there specific use cases we're trying to satisfy right from the start? Any specific scope? Does it necessarily...