beautifulcoder
beautifulcoder
I use it for testing, here is the info on it: ``` C:\Dev\migratedb>sqllocaldb s LocalDB instance "MSSQLLocalDB" started. C:\Dev\migratedb>sqllocaldb i MSSQLLocalDB Name: MSSQLLocalDB Version: 12.0.2000.8 Shared name: Owner: XXX Auto-create:...
Ah, awesome to know. Sounds like TDS solves a specific problem which is great. I agree that named pipes are another issue altogether.
I wonder if TypeScript type definitions might help here. The method property could be set to this declaration: method: 'GET' | 'POST' | ...; I won't need code changes since...
@jfcherng Does this seem feasible? From looking at the plugin code I think it is doable but I would need a bit more hand holding for a PR. ```python #...
I tried the latest release and it broke. This specific version seems to do the trick: https://github.com/OmniSharp/omnisharp-roslyn/releases/tag/v1.37.8
I can verify a .NET 6 project does not work either. So, the problem might be lack of net6.0 support in general.
On further inspection, net6 support works when you only have the .NET SDK installed. If you install both Framework, and .NET Core on Windows then only Framework seems to work...