blob: bd6276f487f870c19206a2bb6f3298e043a427a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/***************************************************************************************************
Copyright (C) 2025 The Qt Company Ltd.
SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
***************************************************************************************************/
using System.Reflection;
using Qt.Quick;
namespace CityTemperatures
{
internal class Program
{
static void Main(string[] args)
{
Qml.LoadFromRootModule("CityTemperatures");
Qml.WaitForExit();
}
}
}
|