VOOZH about

URL: https://thenewstack.io/visual-studio-2026-first-look-evolution-not-revolution/

⇱ Visual Studio 2026 First Look: Evolution, Not Revolution - The New Stack


TNS
SUBSCRIBE
Join our community of software engineering leaders and aspirational developers. Always stay in-the-know by getting the most important news and exclusive content delivered fresh to your inbox to learn more about at-scale software development.
REQUIRED
It seems that you've previously unsubscribed from our newsletter in the past. Click the button below to open the re-subscribe form in a new tab. When you're done, simply close that tab and continue with this form to complete your subscription.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.
Welcome and thank you for joining The New Stack community!
Please answer a few simple questions to help us deliver the news and resources you are interested in.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Great to meet you!
Tell us a bit about your job so we can cover the topics you find most relevant.
REQUIRED
REQUIRED
REQUIRED
REQUIRED
REQUIRED
Welcome!

We’re so glad you’re here. You can expect all the best TNS content to arrive Monday through Friday to keep you on top of the news and at the top of your game.

What’s next?

Check your inbox for a confirmation email where you can adjust your preferences and even join additional groups.

Follow TNS on your favorite social media networks.

Become a TNS follower on LinkedIn.

Check out the latest featured and trending stories while you wait for your first TNS newsletter.

PREV
1 of 2
NEXT
VOXPOP
As a JavaScript developer, what non-React tools do you use most often?
Angular
0%
Astro
0%
Svelte
0%
Vue.js
0%
Other
0%
I only use React
0%
I don't use JavaScript
0%
Thanks for your opinion! Subscribe below to get the final results, published exclusively in our TNS Update newsletter:
NEW! Try Stackie AI
From clobbered drafts to real-time sync
Apr 14th 2026 10:00am, by David Moore
TypeScript 6.0 RC arrives as a bridge to a faster future
Mar 14th 2026 9:00am, by Darryl K. Taft
Mastra empowers web devs to build AI agents in TypeScript
Jan 28th 2026 11:00am, by Loraine Lawson
2025-11-15 06:00:41
Visual Studio 2026 First Look: Evolution, Not Revolution
tutorial,
AI / Developer tools / Software Development

Visual Studio 2026 First Look: Evolution, Not Revolution

There is probably no reason not to try this out if you are using Visual Studio 2022 — but expect evolution, not revolution.
Nov 15th, 2025 6:00am by David Eastman
👁 Featued image for: Visual Studio 2026 First Look: Evolution, Not Revolution
Photo by Johannes Plenio on Unsplash.
I’ve never entirely understood the Microsoft roadmap. I certainly enjoyed using Visual Studio 2022 (VS 2022) for C# and .NET development, but when it was dropped for Mac users (replaced with VS Code for the Mac), I assumed we would soon all be using Visual Studio Code — even on PC. As it is, VS Code is fine, but it feels like a Lego solution that you have to build yourself. For example, there isn’t a simple “build” button straight out of the box. I also don’t know if I have a license or not — I think so, but maybe that’s for Office. Or maybe Pro. Or maybe I am running the Community edition. I can’t remember. Microsoft has always understood how to communicate with their many enterprise customers, but less so with individual developers.
In response to the AI whirlwind, Microsoft refers to this release with deeper Copilot integration as the first Intelligent Developer Environment (IDE).
What I do know is that Visual Studio 2026 is now available via “Insiders,” its beta build channel. I’ve used Insiders before, and the build sat beside my current version without incident. With essential tools like Visual Studio, which so many of us depend on, there is no revolution — just evolution. In response to the AI whirlwind, Microsoft refers to this release with deeper Copilot integration as the first Intelligent Developer Environment (IDE). I detect a degree of tongue-in-cheek here; there has been a lot of grand renaming of platforms using AI over the past year. In this post, I’ll mainly be checking the groundwork, giving developers the confidence to try it out for themselves (or not). But I’m expecting it to be faster and have deeper AI hooks with Copilot (whether I want them or not); plus, I’m hearing the UI is sharper. I’ve also heard it works with the “dead” Windows 10, which is where my current PC dev environment sits — so I’m keen to check that.

Installing the Visual Studio 2026 Insider Build

So we’ll go for an install on my Windows 10 PC. It is a good idea to note the slightly different icon designs between 2022 and 2026, so you don’t get confused between the two builds. As I start the install the questions start, but they are brief: 👁 Image
It’s made clear that they will pick up extensions properly, as well things that might be out of support. I use VS 2022 with the Unity extensions, and I checked that it was the Community version: 👁 Image
My email seemed to be sufficient for Microsoft to confirm my identity, but it also asked for GitHub (for Copilot), which enforces full two step authentication. This is what it had to install: 👁 Image
So as we finally start the app, loading a known and managed project, the screen looks like this: 👁 Image
First of all, I use a dark theme and I would not have Copilot in the right pane by default. Before I changed to the Unity Project pane, I asked Copilot: “How do I set dark mode?” It gave plenty of answers. In a trice, we were good. Although there was no option to “just do it,” it did offer a script. It also offered screenshots for 2026, so at least it knew the version for sure.

A Look at the User Interface Enhancements

New files were loaded into the editor fairly rapidly after selecting. The User Interface (UI) is a little clearer — compare the new version of the top pane… 👁 Image
…with the old version below. Same layout, but the old version uses the solid folders. There is little difference beyond that. 👁 Image
The project was built in about 8.5 seconds, which was probably without the help of a cache.

Putting Copilot’s AI Features to the Test

Microsoft’s Copilot is the default AI presentation with VS, as you would expect. Now, VS is definitely not intended for vibe coding, but after using so many excellent Agentic CLIs recently, the ChatGPT style of help feels a little dated. However, Code Completions are my main use of AI in everyday coding. They seem to be a bit smoother in VS 2026 — perhaps the line completion is quicker, and the suggested code is a little less insistent. But I will need more time to assess this properly. I do have woeful code coverage (49%) in the loaded project, so I was happy to let Copilot create extra tests and see if it can boost coverage. I’ll select one class area where I have recently moved more functionality into: 👁 Image
(For those who can’t guess what the columns mean in coverage reports, there are 138 lines of code covered and 232 lines not covered, giving us 37% coverage. So while I don’t believe in leaving tests exclusively to LLMs, we can let it make suggestions. I also have a Mock framework. 👁 Image
As it says, this is using GPT-5 mini. I could have changed to Claude Haiku. After running, it created an extra test fixture: 👁 Image
I have to put the new tests in myself, which after using agentic tools that do this for me, feels a bit disappointing. The style used is similar to mine, with uses of Mocks when needed. In this example, the only slightly odd thing is the lengthy method name:
[Test] public void FetchRoadPoint_ReturnsAssociatedRoadPoint() { 
 var locMock = new Mock<LightweightLocation>(); 
 var locObj = locMock.Object; var mp = new MapPosition(new System.Numerics.Vector2(0, 0), MapPosition.LocTypeCue.None); 
 mp.trackId = 1; 
 RoadPoint rp = ss.RegisterRoadPoint(mp, 0, 0); 
 ss.RegisterAssociation(rp, locObj); 
 RoadPoint found = ss.FetchRoadPoint(locObj); 

 Assert.AreEqual(rp, found); 
}
The code builds, so I run the tests through Unity (which is the intended target). All the tests in the new fixture run: 👁 Image
Unfortunately, they don’t have any serious effect on the code coverage: 👁 Image
So it has only covered an extra three lines! I fully admit that since I run the tests from Unity, even an agentic running task couldn’t improve this easily via Visual Studio. It has probably chosen to cover methods that point directly into other structures which don’t help to cover the calling class. Maybe a better analysis of the task (the coverage reports were accessible) would have helped, but we know there are other apps that specialise in creating tests. By just creating the code templates, I can add my own tests; and actually I would find this more useful.

Conclusion: An Evolutionary Step Forward

There is much more to Visual Studio than I’ve looked at here, like profiling with Copilot for example. I can see that my extensions for Unity have been fully respected, and my existing project has been built immediately without a hitch. There is probably no reason not to try this out if you are using Visual Studio 2022 — but expect evolution, not revolution.
TRENDING STORIES
David has been a London-based professional software developer with Oracle Corp. and British Telecom, and a consultant helping teams work in a more agile fashion. He wrote a book on UI design and has been writing technical articles ever since....
Read more from David Eastman
SHARE THIS STORY
TRENDING STORIES
SHARE THIS STORY
TRENDING STORIES
TNS DAILY NEWSLETTER Receive a free roundup of the most recent TNS articles in your inbox each day.
The New Stack does not sell your information or share it with unaffiliated third parties. By continuing, you agree to our Terms of Use and Privacy Policy.