blob: 0e48a78cc758f48c0b8cf1c110055e5bee09be45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
๏ปฟ/***************************************************************************************************
Copyright (C) 2024 The Qt Company Ltd.
SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
***************************************************************************************************/
#nullable enable
namespace QtVsTools.Package
{
/// <summary>Defines constants from the <c>source.extension.vsixmanifest</c> file.</summary>
internal sealed partial class Vsix
{
/// <summary>The author of the extension.</summary>
public const string Author = "The Qt Company Ltd.";
/// <summary>The description of the extension.</summary>
public const string Description = "The Qt VS Tools for Visual Studio 2019 allow developers to use the standard development environment without having to worry about any Qt-related build steps or tools.";
/// <summary>The extension identifier.</summary>
public const string Id = "QtVsTools.bf3c71c0-ab41-4427-ada9-9b3813d89ff5";
/// <summary>The default language for the extension.</summary>
public const string Language = "en-US";
/// <summary>The name of the extension.</summary>
public const string Name = "Qt Visual Studio Tools";
/// <summary>The version of the extension.</summary>
public const string Version = QtVsTools.Core.Version.PRODUCT_VERSION;
}
}
|