blob: aa1d65cd1cb56c5cde53fec5b28a2a6d1f97dd5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright (C) 2025 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
using System;
namespace QtVsTools.Core
{
public class ProjectConfigurationEventArgs : EventArgs
{
public string ProjectPath { get; set; }
public bool IsCMakeProject { get; set; }
public string ConfigurationName { get; set; }
}
}
|