Robert Slaney
Robert Slaney

Reputation: 3722

Dart plugin for Visual Studio

Does anyone know if there is a designer or plugin for Visual Studio for Dart, similar to the Dart Editor?

Upvotes: 17

Views: 2339

Answers (2)

Danny Tuppeny
Danny Tuppeny

Reputation: 42383

Edit: Dart Code, my Dart extension for Visual Studio Code is much more complete than the VS extension I made (includes a working debugger and some flutter integration).


Original answer:

As nobody else seemed to be doing it, I decided to have a stab at this. It's very incomplete, but I've started working on an extension:

Dart Visual Studio integration

http://visualstudiogallery.msdn.microsoft.com/69112f14-62d0-40fb-9ccc-03e3534e7121

The current version of DartVS available to install (v0.6) in Visual Studio is very basic and uses regex for syntax highlighting, and shells out to DartAnalyzer on a per-file basis for errors/warnings. This is not terribly reliable!

A new version of the extension (v0.8/v1) is in-progress which uses Google's Dart Analysis service and is much faster and more reliable, however it's still some way off release :(

A list of planned features for the next release can be found on GitHub:

https://github.com/DartVS/DartVS/issues?q=is%3Aissue+milestone%3A0.8

Upvotes: 8

John Evans
John Evans

Reputation: 7393

Nothing yet for Visual Studio.

Upvotes: 4

Related Questions