24 lines · python
1# DExTer : Debugging Experience Tester2# ~~~~~~ ~ ~~ ~ ~~3#4# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.5# See https://llvm.org/LICENSE.txt for license information.6# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception7"""Specializations for the Visual Studio 2022 interface."""8 9from dex.debugger.visualstudio.VisualStudio import VisualStudio10 11 12class VisualStudio2022(VisualStudio):13 @classmethod14 def get_name(cls):15 return "Visual Studio 2022"16 17 @classmethod18 def get_option_name(cls):19 return "vs2022"20 21 @property22 def _dte_version(self):23 return "VisualStudio.DTE.17.0"24