Архив метки: Visual Studio

.NET 10 Makes LINQ Smarter, Faster, and Truly Asynchronous

The .NET 10 version will change LINQ.

LINQ has served as a core element of .NET development for ten years allowing clear data querying across collections, databases along with other items. But with the .NET 10 release, Microsoft is making a big change that will redefine how developers use LINQ in asynchronous situations.

Читать далее

Visual Studio — The configuration element is not declared

При добавлении app.config в Visual Studio и компиляции проекта — начало появляться предупреждение — «The configuration element is not declared». Пример файла приведен ниже.

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
</configuration>Code language: HTML, XML (xml)

«The configuration element is not declared» ошибка в Visual Studio может быть устранена двумя способами:

Читать далее

The remote debugger is older than this version of Visual Studio

Решил попытать счастье и поработать с

Microsoft Visual Studio Professional 2022 Preview (64-bit)
Version 17.0.0 Preview 6.0

И как часто это бывает в alpha/beta версиях продукта — не весь функционал еще есть или реализован. В моем случае нужна была удаленная отладка.

При попытке подключится к Remote Debugger предыдущей 2019 версии — получил сообщение об ошибке

The remote debugger is older than this version of Visual Studio 2022, and Visual Studio is no longer compatible with it. Upgrade your remote debugger to match Visual Studio.

Читать далее