I think the team behind it has been doing fantastic work. Thank you guys.
Visual Studio Code 1.9
261–270 of 312 posts
Re: Visual Studio Code 1.9
#262It's nicer than Atom and almost feels as snappy as Sublime. But Vim still is miles better when you have put in the work to become proficient. MacVim works great for retina screens and high color support.
Re: Visual Studio Code 1.9
#263I worked on the debug inline values feature. Let me know if you have any feedback/questions regarding that. Its currently disabled for evaluation purposes but you can enable in settings via "debug.inlineValues": true http://code.visualstudio.com/updates/v1_9#_inline-variable-v...
Re: Visual Studio Code 1.9
#264Re: Visual Studio Code 1.9
#265VSCode + TypeScript is the perfect foot-in-door for MS to get into the web space. They're both excellent products by themselves, but also give Microsoft the platform to start dangling turnkey Azure integration in front of developers. Imagine if the IDE started to offer the ability to configure, deploy, and manage targeted production stacks--no browser / command line hackery required. That would be compelling.
Re: Visual Studio Code 1.9
#266Earlier quoted context omitted.
Vscode is an IDE. It integrates all your development into one environment. It comes with support for version control, code editing, task running, and debugging all from one application.
From the FAQ: Visual Studio Code is a streamlined code editor with support for development operations like debugging, task running and version control. It aims to provide just the tools a developer needs for a quick code-build-debug cycle and leaves more complex workflows to fuller featured IDEs. So, even Microsoft doesn't think it's a full blown IDE. With enough plug-ins it certainly could be.
Or maybe put differently, IDE's are enterprise software, editors are agile startups?
Re: Visual Studio Code 1.9
#267Earlier quoted context omitted.
On that note if you are a .NET developer you owe yourself to learn PS and how to write cmdlets, it's such a powerful and easy way to expose a CLI for your .NET app compared to stdio and command line arguments parsing - it's incredibly powerful and trivial to do. Unfortunately most .NET devs are programmers who grew up with VB, RAD and GUI tools they don't understand the value of exposing UNIX like small functionality…
I learned C# with a big fat book, and the command line compiler... I understand the usefulness of command line applications. However, when I need more than what a simple shell script gives me, I'm more inclined to reach for node, ruby or python than C#/.Net ... the overhead for a quick scripting environment is quite a bit lower than having to setup a project and build requirements. I've done both... Why node, is simp…
So my comment isn't PS everything or C# everything, it's if you're using C# to write a big fat monolithic app that has multiple isolated functionalities you can expose those fairly easily with PS.
Re: Visual Studio Code 1.9
#268Re: Visual Studio Code 1.9
#269VS Code's release notes are really nicely done - I don't usually comment on documentation but whoever wrote these did a bang up job!
This comment is a long-winded compliment.
Re: Visual Studio Code 1.9
#270Earlier quoted context omitted.
On that note if you are a .NET developer you owe yourself to learn PS and how to write cmdlets, it's such a powerful and easy way to expose a CLI for your .NET app compared to stdio and command line arguments parsing - it's incredibly powerful and trivial to do. Unfortunately most .NET devs are programmers who grew up with VB, RAD and GUI tools they don't understand the value of exposing UNIX like small functionality…
I'm a .net developer, I still install cygwin/bash on my computer because I can write stuff quicker and better. PS get's incredibly verbose for anything non trivial. I learned powershell long before bash too.