I'm really loving how the refactor and generate stuff has developed over the years. It is such a different experience these days and I'm probably at least five times as productive as a result of it. First we had no refactor tools at all, and how we survived I'll never now Then basic refactor tools where introduced. You could call up a dialog to do explicit refactoring. Then the generate functionality was introduced a…
Well, Resharper is available since VS2003 if not earlier. It has what VS2015 has to offer and more. Including extracting code into methods and classes. I can't even image the pain developing without it (at least before VS 2015).
Visual Studio 2015 and .NET 4.6 Available for Download
71–80 of 128 posts
Re: Visual Studio 2015 and .NET 4.6 Available for Download
#72Too bad this does only contain the preview of .NET 5. I hoped this release would bring a more stable version of .NET 5
Re: Visual Studio 2015 and .NET 4.6 Available for Download
#73as a newish dev (eventually I'll work my way to vim), I really enjoy using Visual Studio, and my wallet is very happy that they decided to release a Community edition. Microsoft has been making some great strides lately - keep it up!
Let me tell you one thing: Using VIM will not make you "pro hacker". It won't even make you more productive, probably.
Re: Visual Studio 2015 and .NET 4.6 Available for Download
#74Has anyone done anything interesting with Roslyn to date (v1 is mentioned in the notes)?
I was working on a large enterprise application that had a dynamically generated data model, so all data access was done through strings. So much of the code looked like dictionary accesses "if(car[Constants.Wheels"].ContainsKey[Constants.FrontLeftWheel])" Now unfortunately there was not just one constants file, this application numbered nearly 60 projects and each one possessed a constants file and people added stri…
Could you provide some highlevel details of the implementation? TIA!
Re: Visual Studio 2015 and .NET 4.6 Available for Download
#75Earlier quoted context omitted.
Background compiling and live-updating is now here with Rosyln powered builds. EDIT: actually I'm not sure if this only applies to ASP.NET 5 which constantly builds in the background in-memory...
Hmm, in what sense, or do you mean it's feasible now? I was thinking that whenever I press F5 it should instantly run. It's insane that the computer just loiters around and doesn't compile until you explicitly tells it to, when it could do incremental background compiling... especially since the editor pretty much does that anyway to provide its intellisense and stuff. The build process seems very separated from the…
The whole cycle is way faster and there's a lot less pause time between editing a c# file, hitting save and then just hitting refresh in the browser. I'm not sure about mobile app dev but that probably has more latency due to the emulator setup.
Re: Visual Studio 2015 and .NET 4.6 Available for Download
#76Earlier quoted context omitted.
Hmm, in what sense, or do you mean it's feasible now? I was thinking that whenever I press F5 it should instantly run. It's insane that the computer just loiters around and doesn't compile until you explicitly tells it to, when it could do incremental background compiling... especially since the editor pretty much does that anyway to provide its intellisense and stuff. The build process seems very separated from the…
Roslyn is a new compiler built in C# and faster. When using VS2015 (and confirmed working with asp.net 5 projects), the solution is compiled using Roslyn and completely in memory (meaning it doesnt build and then write out assemblies to disk just to read them back into memory and reset the app). The whole cycle is way faster and there's a lot less pause time between editing a c# file, hitting save and then just hitti…
Re: Visual Studio 2015 and .NET 4.6 Available for Download
#77Too bad this does only contain the preview of .NET 5. I hoped this release would bring a more stable version of .NET 5
It contains .NET 4.6, which is stable and not .NET 5. AFAIK, .NET 5 doesn't exist?
Re: Visual Studio 2015 and .NET 4.6 Available for Download
#78(http://blogs.msdn.com/b/dotnet/archive/2014/04/07/the-jit-fi...)
Re: Visual Studio 2015 and .NET 4.6 Available for Download
#79Warning to anyone using Windows 2012 Server R2 as your workstation - if you install Microsoft Emulator for Android, it enables Hyper-V which will cause your video drivers to no longer work since Hyper-V replaces your video card with a virtual one (or something like that).
Re: Visual Studio 2015 and .NET 4.6 Available for Download
#80Visual Studio 2015 Community: Full-featured Integrated Development Environment for building Web, Windows Desktop and cross-platform iOS, Android, and Windows apps [1]. ... cross-platform iOS, Android, and Windows apps? That's new, isn't it? [1] https://www.visualstudio.com/en-us/products/vs-2015-product-... EDIT: Err, sorry, the page changed since I wrote this comment, the quoted statement is gone... EDIT2: Looks lik…
Yes it is. Although, is .Net fully open sourced yet? or still in the process? I'm not so sure you can build an IOS app quite yet in visual studio?