1# DExTer : Debugging Experience Tester
2# ~~~~~~   ~         ~~         ~   ~~
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-exception
7"""Specializations for the Visual Studio 2017 interface."""
8
9from dex.debugger.visualstudio.VisualStudio import VisualStudio
10
11
12class VisualStudio2017(VisualStudio):
13    @classmethod
14    def get_name(cls):
15        return "Visual Studio 2017"
16
17    @classmethod
18    def get_option_name(cls):
19        return "vs2017"
20
21    @property
22    def _dte_version(self):
23        return "VisualStudio.DTE.15.0"
24