blob: f313c1d8c2c87aed31dabfc1b7191e23b30f715a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2025 The Qt Company Ltd.
SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
-->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>9.0</LangVersion> <!-- C# 9.0 is supported by both VS2019 and VS2022 -->
</PropertyGroup>
<!-- // Visual Studio 2022 -->
<PropertyGroup Condition="'$(VisualStudioVersion)'=='17.0'">
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
</PropertyGroup>
<!-- // Visual Studio 2019 -->
<PropertyGroup Condition="'$(VisualStudioVersion)'=='16.0'">
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
</PropertyGroup>
</Project>
|