Sergey Tihon

Results 189 comments of Sergey Tihon

OK got it. [Right now](https://www.nuget.org/packages/FsLexYacc/) `FsLexYacc` had dependency on `FsLexYacc.Runtime`. Why this dependency disappeared after refactoring?

> Because it didn't actually have a dependency on FsLexYacc.Runtime, because it embedded that dll in the metapackage already. When you generate code (`fs`) from `fsl`/`fsy` using (`FsLex`/`FsYacc`) you need...

Would be nice to show generated files as nested files. ![image](https://cloud.githubusercontent.com/assets/1197905/5846471/d884f190-a1d4-11e4-9f70-48ba5f767def.png) In the project file it looks like this: ![image](https://cloud.githubusercontent.com/assets/1197905/5846561/97825074-a1d5-11e4-8055-4888d50ae5f1.png)

According to you initial idea, I think that you can achieve it using `false` attribute. My project file: ``` xml false Parser.fs false Lexer.fs --module Parser --unicode ``` and what...

@MangelMaxime axios looks interesting, because it works inside nodejs process and in the browser. @Zaid-Ajaj is it an option to port fable client on top of axios? Or 15kb is...

For my use case I implemented API client for Node.js manually https://github.com/sergey-tihon/vscode-openxml-explorer/blob/main/src/extension/Remoting.fs on top of Fable.Axios updated to Fable 3 https://github.com/sergey-tihon/vscode-openxml-explorer/blob/main/src/extension/Fable.Axios.fs and [opened issues](https://github.com/gamurs-group/fable-axios/issues/1) to update [Fable.Axios NuGet package](https://www.nuget.org/packages/Fable.Axios/).

ok, thank you, I all take a look at proper deserialization (when it breaks 😉 )

Thank you @jmprieur. Redis + Docker looks completed for default solution (in terms of dependencies) I think that if developers start from [Microsoft.Identity.Web.ProjectTemplates](https://www.nuget.org/packages/Microsoft.Identity.Web.ProjectTemplates/) it should just works. Quickstart manuals like...

@mavnn not related to your issue, but `paket` can restore all model for you and unzip them without `bootstrap.fsx` See here https://github.com/sergey-tihon/Stanford.NLP.NET/blob/master/paket.dependencies and here http://fsprojects.github.io/Paket/http-dependencies.html

Everything work nicely on Windows =( But, could you please try to comment two files ``` fsharp #I "packages/Stanford.NLP.Parser/lib/" #r "stanford-parser.dll" ``` my [Stanford.NLP.NET landing page](http://sergey-tihon.github.io/Stanford.NLP.NET/) says that > Note:...