Lennart

Results 12 comments of Lennart

This would be really nice! Are there any other good solutions with CI builds today?

``` fsharp new SqlCommandProvider() ``` Is it possible to have something like this? This way it would be possible to use another connection string on the build server at compile...

I'm using a connection string literal, but i thought about using a config file with a connection string and to replace it using a build script on the build server...

``` 01.10.2016 09:09:23: System.NullReferenceException: Object reference not set to an instance of an object. at Microsoft.VisualStudio.FSharp.ProjectSystem.MSBuildUtilities.MoveFileToBottomOfGroup(String relativeFileName, ProjectNode projectNode) at Microsoft.VisualStudio.FSharp.ProjectSystem.FSharpProjectNode.MoveFileToBottomIfNoOtherPendingMove(String relativeFileName) at Microsoft.VisualStudio.FSharp.ProjectSystem.ProjectNode.DoAddItem(UInt32 itemIdLoc, VSADDITEMOPERATION op, String itemName, UInt32...

Yes, but i was wondering how many disconnections we have on the same network. With the plugin we have about 2-3 disconnections in 10 minutes, with Google Chrome we have...

Do we really need a custom way in F# to describe the schema? There is already the GraphQL schema language. What about writing the schema first and use a type...

Yes, that would be sufficient. Does `resolve` need the dependency on `tsproject` or would `ts.resolve()` work as well? I could think of something like ``` javascript gulp.task('default', function () {...

I think this should work with incremental compilation as well. But we would need a way to watch all files, including the referenced files. There is currently no way to...

I have the same problem. VS Code 1.12.2 TypeScript 2.3.2 Is there a repository i can clone that should work?

I had to run `npm run compile` but now it works and i get graphql errors displayed at VSC's problem window. Code completion doesn't work, any idea what could prevent...