Posts by this author

Apr 28, 2025
Post comments count3
Post likes count2

Set the default file encoding

Have you ever encountered unexpected issues due to file encoding when working in cross-platform environments? These frustrating problems can disrupt your workflow and consume valuable time. Visual Studio addresses these concerns with a new feature – the Default File Encoding option. You can now specify the encoding Visual Studio should use when ...

Cross-Platform
Feb 4, 2025
Post comments count0
Post likes count6

Your fonts are now preserved when changing theme

Do you find yourself adjusting your font settings every time you change themes in Visual Studio, We've made some changes that we think will help. The latest update in Visual Studio 2022 allows theme switching without affecting font settings. This feature maintains the selected font face and size regardless of the chosen theme, while font col...

themes
Sep 17, 2024
Post comments count0
Post likes count4

How to run .NET apps natively on Arm64 devices

Are you developing .NET applications for Arm-based processors? Do you want to take advantage of the performance and power efficiency of running your apps natively on Arm64 devices? If so, you'll be happy to hear that Visual Studio 2022 17.11 has a new feature that makes it easier than ever to do just that. Visual Studio 2022 natively support...

.NETArm6432-bit
Jun 18, 2024
Post comments count0
Post likes count9

Easily navigate code delegates while debugging

Delegates are everywhere in modern code; a delegate is a type that represents references to methods with a particular parameter list and return type. Developers use delegates to pass methods as arguments to other methods. One example you may be familiar with is with event handlers. Handlers are methods you can invoke through delegates. Delegates re...

Debugging and Diagnostics
May 23, 2024
Post comments count0
Post likes count8

Developing cloud-native apps with .NET Aspire and Visual Studio

We're excited to introduce the general availability of .NET Aspire, a comprehensive stack aimed at simplifying the way .NET cloud-native apps are built and managed. .NET Aspire offers developers like you an improved, opinionated framework for constructing distributed applications, ensuring a seamless and consistent development experience. This new...

.NETAzureContainers
May 21, 2024
Post comments count0
Post likes count9

Visual Studio 2022 17.10 and GitHub Copilot: Your Coding Partner for Faster and Smarter Development

Today, as we kick off the //BUILD 2024 conference, we're thrilled to share the general availability of Visual Studio 2022 17.10! This release features a new, single GitHub Copilot extension, marking a significant leap forward in AI-assisted development by embedding the power of advanced AI directly into strategic parts of your Integrated Developmen...

Release
Mar 12, 2024
Post comments count0
Post likes count9

Introducing Visual Studio 17.10 – Preview 2 is Here!

We hope you all enjoyed the new and updated features that came with our first preview of Visual Studio 17.10, and now we have even more to share! This release brings additional tools to help you improve your code reviews with Copilot, diagnostics improvements, as well as additional Extensibility and WinForms enhancements. Browse this list of upd...

Visual Studio 2022
Feb 14, 2024
Post comments count20
Post likes count2

Introducing Visual Studio 17.10 – Preview 1 is Here!

We're excited to introduce the first preview of Visual Studio 17.10! This is where we get to show you what we've been working on and what we’re planning, and with feedback from the most active developer community on the planet, we get to deliver truly compelling products. During this release you’ll get to check out our latest enhancements and ...

Preview Release
Aug 22, 2023
Post comments count16
Post likes count7

Simplified Code Refinement and Debugging with GitHub Copilot Chat

This March, we announced GitHub Copilot chat for Visual Studio 2022. With Chat, Copilot has moved beyond code completions, offering in-depth analysis and explanations of how code works. It supports the generation of unit tests, and even helps with proposed fixes to bugs, and explaining exceptions. By gathering useful context data from Visual Studio...

Chat
Jan 11, 2023
Post comments count8
Post likes count12

Debugging Encoded Text

Validating encoded strings is a basic but important part of our debugging workflow these days. I cannot count the number of times I have found myself looking at a URL-encoded string only to be suddenly unsure how percentage signs are supposed to be represented? I have been a web developer for years, but I can never remember what the URL-encoded ...

Debugging