Daniel J. Summers

Results 13 comments of Daniel J. Summers

I was looking at the source, which led me to the log; `mvn` wasn't on the path in the environment where I launched VS Code. It is now, and all...

After making your change (the appropriate `devenv.exe.config`), my error changed from 4.2.0.0 to 4.1.0.0 - but still no dice. Could you share your `resPath`?

This isn't the only project with [an issue like this](https://github.com/OmniSharp/omnisharp-vscode/issues/4201) _(from OminSharp)_

I'll dig in more this evening, but just looking over things quickly - while you're right about `/snap/bin`'s symlinks, `/snap/dotnet-sdk/current/dotnet` is not a wrapper for snap (at least on my...

I think that the `/snap/dotnet-sdk/current/dotnet` (apart from `current` being a symlink to the latest install) is the path across snaps. (The goal is that there aren't differences across the various...

I eventually got it to build with referencing a specific Windows SDK loaded. I did manage to find my archived directory from back then - it looks like it was...

This bit me the other day in all my cookie adventures. :) Would a single-case DU be a good fix? Something like... ```fsharp module ServerKey type T = ServerKey of...

OK - great. I'll work on this once I get my session/state documentation done. I'm guessing the size-check-on-startup would be [go here, as the first line of `startWebServerAsync`](https://github.com/SuaveIO/suave/blob/f0831e3ed00c611f78a04ac30d3a065403470274/src/Suave/Web.fs#L38).

Are you looking for something like Express.js's router/module paradigm? [(briefly described here)](https://expressjs.com/en/guide/routing.html#express-router) Something like... ```fsharp let apiRoutes = router [ routePath "/" >=> NO_CONTENT routePath "/users" >=> OK """{"api": "users"}"""...

I just came here to ask the same thing. I just finished writing it (though I don't have tests for it yet); would this be something you'd be interested in...