aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiguel Costa <miguel.costa@qt.io>2025-11-19 19:21:28 +0100
committerMiguel Costa <miguel.costa@qt.io>2025-11-26 18:07:46 +0000
commitad127a5e96c5c6d40ba6d2c8d4596d354670db28 (patch)
treecbee36c86abfffdcacf19031f0a30210a5a91e5a
parentc8293934db671a1216b51005ee052516cee2e391 (diff)
Refactor example projects
* Create new .sln in the `examples` dir * Use package when building examples outside of the topmost .sln * Disable build of examples by default in the topmost .sln - Projects can still be manually built and debugged * Renamed `GeneratorTestApp` as `Primes` * Renamed `PackageTestApp` as `CityTemperatures` Change-Id: I333ba1941f3ccb021cb2681da09bcad8024ae186 Reviewed-by: Karsten Heimrich <karsten.heimrich@qt.io>
-rw-r--r--examples/CityTemperatures/CityTemperatures.csproj (renamed from tests/PackageTestApp/PackageTestApp.csproj)15
-rw-r--r--examples/CityTemperatures/CityTemperatures.qml (renamed from tests/PackageTestApp/CityTemperatures.qml)0
-rw-r--r--examples/CityTemperatures/Program.cs (renamed from tests/PackageTestApp/Program.cs)2
-rw-r--r--examples/CityTemperatures/Weather.cs (renamed from tests/PackageTestApp/Weather.cs)2
-rw-r--r--examples/ColorPalette/ColorPalette.csproj13
-rw-r--r--examples/Primes/Main.qml (renamed from tests/GeneratorTestApp/Main.qml)0
-rw-r--r--examples/Primes/Models/Dynamic/Event/ModelFromEvent.qml (renamed from tests/GeneratorTestApp/Models/Dynamic/Event/ModelFromEvent.qml)0
-rw-r--r--examples/Primes/Models/Dynamic/Model/ItemModel.qml (renamed from tests/GeneratorTestApp/Models/Dynamic/Model/ItemModel.qml)0
-rw-r--r--examples/Primes/Models/Dynamic/Model/ObservableModel.qml (renamed from tests/GeneratorTestApp/Models/Dynamic/Model/ObservableModel.qml)0
-rw-r--r--examples/Primes/Models/Static/Function/ObjectListModel.qml (renamed from tests/GeneratorTestApp/Models/Static/Function/ObjectListModel.qml)0
-rw-r--r--examples/Primes/Models/Static/Function/ValueListModel.qml (renamed from tests/GeneratorTestApp/Models/Static/Function/ValueListModel.qml)0
-rw-r--r--examples/Primes/Models/Static/Range/DelegateCall.qml (renamed from tests/GeneratorTestApp/Models/Static/Range/DelegateCall.qml)0
-rw-r--r--examples/Primes/Models/Static/Range/DelegateElement.qml (renamed from tests/GeneratorTestApp/Models/Static/Range/DelegateElement.qml)0
-rw-r--r--examples/Primes/ObservablePrimes.cs (renamed from tests/GeneratorTestApp/ObservablePrimes.cs)2
-rw-r--r--examples/Primes/Prime.cs (renamed from tests/GeneratorTestApp/Prime.cs)2
-rw-r--r--examples/Primes/PrimeFactory.cs (renamed from tests/GeneratorTestApp/PrimeFactory.cs)2
-rw-r--r--examples/Primes/Primes.cs (renamed from tests/GeneratorTestApp/Primes.cs)2
-rw-r--r--examples/Primes/Primes.csproj (renamed from tests/GeneratorTestApp/GeneratorTestApp.csproj)23
-rw-r--r--examples/Primes/Program.cs (renamed from tests/GeneratorTestApp/Program.cs)2
-rw-r--r--examples/Tutorial/Tutorial.csproj22
-rw-r--r--examples/UserView/UserViewCli/UserViewCli.csproj12
-rw-r--r--examples/UserView/UserViewLib/UserViewLib.csproj12
-rw-r--r--examples/UserView/UserViewQml/Properties/launchSettings.json8
-rw-r--r--examples/UserView/UserViewQml/UserViewQml.csproj24
-rw-r--r--examples/examples.sln68
-rw-r--r--qtdotnet.sln85
-rw-r--r--tests/GeneratorTestApp/Properties/launchSettings.json9
-rw-r--r--tests/PackageTestApp/PackageTestApp.sln25
28 files changed, 191 insertions, 139 deletions
diff --git a/tests/PackageTestApp/PackageTestApp.csproj b/examples/CityTemperatures/CityTemperatures.csproj
index 5bc89db..e1e8661 100644
--- a/tests/PackageTestApp/PackageTestApp.csproj
+++ b/examples/CityTemperatures/CityTemperatures.csproj
@@ -7,6 +7,8 @@
-->
<Project Sdk="Microsoft.NET.Sdk">
+ <Import Project="$([MSBuild]::GetPathOfFileAbove(qt_version.props))" />
+
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0</TargetFramework>
@@ -16,7 +18,18 @@
<ItemGroup>
<PackageReference Include="OpenMeteo.dotnet" Version="2.0.0" />
- <PackageReference Include="Qt.Bridge.DotNet" Version="0.1.0" />
</ItemGroup>
+ <ItemGroup Condition="'$(SolutionName)' != 'qtdotnet'">
+ <PackageReference Include="Qt.Bridge.DotNet" Version="$(SelectedVersion)" />
+ </ItemGroup>
+
+ <ItemGroup Condition="'$(SolutionName)' == 'qtdotnet'">
+ <ProjectReference Include="..\..\src\Qt.DotNet.Adapter\Qt.DotNet.Adapter.csproj" />
+ <ProjectReference Include="..\..\src\Qt.DotNet.Generator\Qt.DotNet.Generator.csproj" />
+ <ProjectReference Include="..\..\src\Qt.DotNet.GenerationRules\Qt.DotNet.GenerationRules.csproj" />
+ </ItemGroup>
+ <Import Condition="'$(SolutionName)' == 'qtdotnet'"
+ Project="..\..\src\Qt.DotNet.Adapter\build\Qt.DotNet.targets" />
+
</Project>
diff --git a/tests/PackageTestApp/CityTemperatures.qml b/examples/CityTemperatures/CityTemperatures.qml
index 8854f6b..8854f6b 100644
--- a/tests/PackageTestApp/CityTemperatures.qml
+++ b/examples/CityTemperatures/CityTemperatures.qml
diff --git a/tests/PackageTestApp/Program.cs b/examples/CityTemperatures/Program.cs
index eaa2432..bd6276f 100644
--- a/tests/PackageTestApp/Program.cs
+++ b/examples/CityTemperatures/Program.cs
@@ -6,7 +6,7 @@
using System.Reflection;
using Qt.Quick;
-namespace PackageTestApp
+namespace CityTemperatures
{
internal class Program
{
diff --git a/tests/PackageTestApp/Weather.cs b/examples/CityTemperatures/Weather.cs
index 3f961b9..1f5441e 100644
--- a/tests/PackageTestApp/Weather.cs
+++ b/examples/CityTemperatures/Weather.cs
@@ -9,7 +9,7 @@ using System.Diagnostics;
using OpenMeteo;
using Qt.DotNet.Utils;
-namespace PackageTestApp
+namespace CityTemperatures
{
public class Weather : INotifyPropertyChanged
{
diff --git a/examples/ColorPalette/ColorPalette.csproj b/examples/ColorPalette/ColorPalette.csproj
index e3af12f..c912843 100644
--- a/examples/ColorPalette/ColorPalette.csproj
+++ b/examples/ColorPalette/ColorPalette.csproj
@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
<!--
/***************************************************************************************************
Copyright (C) 2025 The Qt Company Ltd.
@@ -7,6 +8,8 @@
<Project>
+ <Import Project="$([MSBuild]::GetPathOfFileAbove(qt_version.props))" />
+
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
<PropertyGroup>
@@ -78,13 +81,17 @@
<PackageReference Include="Refit" Version="8.0.0" />
</ItemGroup>
- <ItemGroup>
+ <ItemGroup Condition="'$(SolutionName)' != 'qtdotnet'">
+ <PackageReference Include="Qt.Bridge.DotNet" Version="$(SelectedVersion)" />
+ </ItemGroup>
+
+ <ItemGroup Condition="'$(SolutionName)' == 'qtdotnet'">
<ProjectReference Include="..\..\src\Qt.DotNet.Adapter\Qt.DotNet.Adapter.csproj" />
<ProjectReference Include="..\..\src\Qt.DotNet.Generator\Qt.DotNet.Generator.csproj" />
<ProjectReference Include="..\..\src\Qt.DotNet.GenerationRules\Qt.DotNet.GenerationRules.csproj" />
</ItemGroup>
-
- <Import Project="..\..\src\Qt.DotNet.Adapter\build\Qt.DotNet.targets" />
+ <Import Condition="'$(SolutionName)' == 'qtdotnet'"
+ Project="..\..\src\Qt.DotNet.Adapter\build\Qt.DotNet.targets" />
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
diff --git a/tests/GeneratorTestApp/Main.qml b/examples/Primes/Main.qml
index a739cfa..a739cfa 100644
--- a/tests/GeneratorTestApp/Main.qml
+++ b/examples/Primes/Main.qml
diff --git a/tests/GeneratorTestApp/Models/Dynamic/Event/ModelFromEvent.qml b/examples/Primes/Models/Dynamic/Event/ModelFromEvent.qml
index 3d6a76f..3d6a76f 100644
--- a/tests/GeneratorTestApp/Models/Dynamic/Event/ModelFromEvent.qml
+++ b/examples/Primes/Models/Dynamic/Event/ModelFromEvent.qml
diff --git a/tests/GeneratorTestApp/Models/Dynamic/Model/ItemModel.qml b/examples/Primes/Models/Dynamic/Model/ItemModel.qml
index 0fee843..0fee843 100644
--- a/tests/GeneratorTestApp/Models/Dynamic/Model/ItemModel.qml
+++ b/examples/Primes/Models/Dynamic/Model/ItemModel.qml
diff --git a/tests/GeneratorTestApp/Models/Dynamic/Model/ObservableModel.qml b/examples/Primes/Models/Dynamic/Model/ObservableModel.qml
index 9503ae1..9503ae1 100644
--- a/tests/GeneratorTestApp/Models/Dynamic/Model/ObservableModel.qml
+++ b/examples/Primes/Models/Dynamic/Model/ObservableModel.qml
diff --git a/tests/GeneratorTestApp/Models/Static/Function/ObjectListModel.qml b/examples/Primes/Models/Static/Function/ObjectListModel.qml
index ea5d577..ea5d577 100644
--- a/tests/GeneratorTestApp/Models/Static/Function/ObjectListModel.qml
+++ b/examples/Primes/Models/Static/Function/ObjectListModel.qml
diff --git a/tests/GeneratorTestApp/Models/Static/Function/ValueListModel.qml b/examples/Primes/Models/Static/Function/ValueListModel.qml
index 6548634..6548634 100644
--- a/tests/GeneratorTestApp/Models/Static/Function/ValueListModel.qml
+++ b/examples/Primes/Models/Static/Function/ValueListModel.qml
diff --git a/tests/GeneratorTestApp/Models/Static/Range/DelegateCall.qml b/examples/Primes/Models/Static/Range/DelegateCall.qml
index a216c4d..a216c4d 100644
--- a/tests/GeneratorTestApp/Models/Static/Range/DelegateCall.qml
+++ b/examples/Primes/Models/Static/Range/DelegateCall.qml
diff --git a/tests/GeneratorTestApp/Models/Static/Range/DelegateElement.qml b/examples/Primes/Models/Static/Range/DelegateElement.qml
index 1e05786..1e05786 100644
--- a/tests/GeneratorTestApp/Models/Static/Range/DelegateElement.qml
+++ b/examples/Primes/Models/Static/Range/DelegateElement.qml
diff --git a/tests/GeneratorTestApp/ObservablePrimes.cs b/examples/Primes/ObservablePrimes.cs
index cdc75c6..fb23bf3 100644
--- a/tests/GeneratorTestApp/ObservablePrimes.cs
+++ b/examples/Primes/ObservablePrimes.cs
@@ -5,7 +5,7 @@
using System.Collections.ObjectModel;
-namespace GeneratorTestApp
+namespace PrimesApp
{
public class ObservablePrimes
{
diff --git a/tests/GeneratorTestApp/Prime.cs b/examples/Primes/Prime.cs
index 94dbf47..8f37b39 100644
--- a/tests/GeneratorTestApp/Prime.cs
+++ b/examples/Primes/Prime.cs
@@ -7,7 +7,7 @@ using System.ComponentModel;
using Qt.DotNet.Utils;
using Qt.Quick;
-namespace GeneratorTestApp
+namespace PrimesApp
{
public class Prime : INotifyPropertyChanged
{
diff --git a/tests/GeneratorTestApp/PrimeFactory.cs b/examples/Primes/PrimeFactory.cs
index f5fdf1e..76da5ce 100644
--- a/tests/GeneratorTestApp/PrimeFactory.cs
+++ b/examples/Primes/PrimeFactory.cs
@@ -8,7 +8,7 @@ using Qt.DotNet;
using Qt.DotNet.Utils;
using Qt.Quick;
-namespace GeneratorTestApp
+namespace PrimesApp
{
public class PrimeCreateEventArgs : EventArgs
{
diff --git a/tests/GeneratorTestApp/Primes.cs b/examples/Primes/Primes.cs
index 006c931..3011344 100644
--- a/tests/GeneratorTestApp/Primes.cs
+++ b/examples/Primes/Primes.cs
@@ -8,7 +8,7 @@ using Qt.DotNet;
using Qt.DotNet.Utils;
using Qt.Quick;
-namespace GeneratorTestApp
+namespace PrimesApp
{
public class Primes : ListModel<Prime>, INotifyPropertyChanged
{
diff --git a/tests/GeneratorTestApp/GeneratorTestApp.csproj b/examples/Primes/Primes.csproj
index a8e2a1e..59ebdf2 100644
--- a/tests/GeneratorTestApp/GeneratorTestApp.csproj
+++ b/examples/Primes/Primes.csproj
@@ -5,8 +5,11 @@
SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
****************************************************************************************************
-->
+
<Project>
+ <Import Project="$([MSBuild]::GetPathOfFileAbove(qt_version.props))" />
+
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
<PropertyGroup>
@@ -17,18 +20,18 @@
<SatelliteResourceLanguages>en-US</SatelliteResourceLanguages>
</PropertyGroup>
- <ItemGroup>
- <ProjectReference
- Include="..\..\src\Qt.DotNet.Adapter\Qt.DotNet.Adapter.csproj" />
- <ProjectReference
- Include="..\..\src\Qt.DotNet.Generator\Qt.DotNet.Generator.csproj" />
- <ProjectReference
- Include="..\..\src\Qt.DotNet.GenerationRules\Qt.DotNet.GenerationRules.csproj" />
- <ProjectReference
- Include="..\..\utils\LazyFactory\LazyFactory.csproj" />
+ <ItemGroup Condition="'$(SolutionName)' != 'qtdotnet'">
+ <PackageReference Include="Qt.Bridge.DotNet" Version="$(SelectedVersion)" />
</ItemGroup>
- <Import Project="..\..\src\Qt.DotNet.Adapter\build\Qt.DotNet.targets"/>
+ <ItemGroup Condition="'$(SolutionName)' == 'qtdotnet'">
+ <ProjectReference Include="..\..\src\Qt.DotNet.Adapter\Qt.DotNet.Adapter.csproj" />
+ <ProjectReference Include="..\..\src\Qt.DotNet.Generator\Qt.DotNet.Generator.csproj" />
+ <ProjectReference Include="..\..\src\Qt.DotNet.GenerationRules\Qt.DotNet.GenerationRules.csproj" />
+ <ProjectReference Include="..\..\utils\LazyFactory\LazyFactory.csproj" />
+ </ItemGroup>
+ <Import Condition="'$(SolutionName)' == 'qtdotnet'"
+ Project="..\..\src\Qt.DotNet.Adapter\build\Qt.DotNet.targets" />
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
diff --git a/tests/GeneratorTestApp/Program.cs b/examples/Primes/Program.cs
index 66fc02f..bf520b6 100644
--- a/tests/GeneratorTestApp/Program.cs
+++ b/examples/Primes/Program.cs
@@ -6,7 +6,7 @@
using System.Reflection;
using Qt.Quick;
-namespace GeneratorTestApp
+namespace PrimesApp
{
public class Program
{
diff --git a/examples/Tutorial/Tutorial.csproj b/examples/Tutorial/Tutorial.csproj
index 9b853c3..e28ae21 100644
--- a/examples/Tutorial/Tutorial.csproj
+++ b/examples/Tutorial/Tutorial.csproj
@@ -1,4 +1,14 @@
-<Project>
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+/***************************************************************************************************
+ 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
+***************************************************************************************************/
+-->
+
+<Project>
+
+ <Import Project="$([MSBuild]::GetPathOfFileAbove(qt_version.props))" />
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
@@ -9,13 +19,17 @@
<Nullable>disable</Nullable>
</PropertyGroup>
- <ItemGroup>
+ <ItemGroup Condition="'$(SolutionName)' != 'qtdotnet'">
+ <PackageReference Include="Qt.Bridge.DotNet" Version="$(SelectedVersion)" />
+ </ItemGroup>
+
+ <ItemGroup Condition="'$(SolutionName)' == 'qtdotnet'">
<ProjectReference Include="..\..\src\Qt.DotNet.Adapter\Qt.DotNet.Adapter.csproj" />
<ProjectReference Include="..\..\src\Qt.DotNet.Generator\Qt.DotNet.Generator.csproj" />
<ProjectReference Include="..\..\src\Qt.DotNet.GenerationRules\Qt.DotNet.GenerationRules.csproj" />
</ItemGroup>
-
- <Import Project="..\..\src\Qt.DotNet.Adapter\build\Qt.DotNet.targets" />
+ <Import Condition="'$(SolutionName)' == 'qtdotnet'"
+ Project="..\..\src\Qt.DotNet.Adapter\build\Qt.DotNet.targets" />
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
diff --git a/examples/UserView/UserViewCli/UserViewCli.csproj b/examples/UserView/UserViewCli/UserViewCli.csproj
index ce01470..b6d6bec 100644
--- a/examples/UserView/UserViewCli/UserViewCli.csproj
+++ b/examples/UserView/UserViewCli/UserViewCli.csproj
@@ -1,4 +1,14 @@
-<Project Sdk="Microsoft.NET.Sdk">
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+/***************************************************************************************************
+ 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
+***************************************************************************************************/
+-->
+
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <Import Project="$([MSBuild]::GetPathOfFileAbove(qt_version.props))" />
<PropertyGroup>
<OutputType>Exe</OutputType>
diff --git a/examples/UserView/UserViewLib/UserViewLib.csproj b/examples/UserView/UserViewLib/UserViewLib.csproj
index 363541f..a4a0e3d 100644
--- a/examples/UserView/UserViewLib/UserViewLib.csproj
+++ b/examples/UserView/UserViewLib/UserViewLib.csproj
@@ -1,4 +1,14 @@
-<Project Sdk="Microsoft.NET.Sdk">
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+/***************************************************************************************************
+ 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
+***************************************************************************************************/
+-->
+
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <Import Project="$([MSBuild]::GetPathOfFileAbove(qt_version.props))" />
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
diff --git a/examples/UserView/UserViewQml/Properties/launchSettings.json b/examples/UserView/UserViewQml/Properties/launchSettings.json
deleted file mode 100644
index 3ad6e5f..0000000
--- a/examples/UserView/UserViewQml/Properties/launchSettings.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "profiles": {
- "UserViewQml": {
- "commandName": "Project",
- "nativeDebugging": false
- }
- }
-} \ No newline at end of file
diff --git a/examples/UserView/UserViewQml/UserViewQml.csproj b/examples/UserView/UserViewQml/UserViewQml.csproj
index 470d204..514de22 100644
--- a/examples/UserView/UserViewQml/UserViewQml.csproj
+++ b/examples/UserView/UserViewQml/UserViewQml.csproj
@@ -1,4 +1,14 @@
-<Project>
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+/***************************************************************************************************
+ 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
+***************************************************************************************************/
+-->
+
+<Project>
+
+ <Import Project="$([MSBuild]::GetPathOfFileAbove(qt_version.props))" />
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
@@ -10,14 +20,20 @@
</PropertyGroup>
<ItemGroup>
+ <ProjectReference Include="..\UserViewLib\UserViewLib.csproj" />
+ </ItemGroup>
+
+ <ItemGroup Condition="'$(SolutionName)' != 'qtdotnet'">
+ <PackageReference Include="Qt.Bridge.DotNet" Version="$(SelectedVersion)" />
+ </ItemGroup>
+
+ <ItemGroup Condition="'$(SolutionName)' == 'qtdotnet'">
<ProjectReference Include="..\..\..\src\Qt.DotNet.Adapter\Qt.DotNet.Adapter.csproj" />
<ProjectReference Include="..\..\..\src\Qt.DotNet.Generator\Qt.DotNet.Generator.csproj" />
<ProjectReference Include="..\..\..\src\Qt.DotNet.GenerationRules\Qt.DotNet.GenerationRules.csproj" />
<ProjectReference Include="..\..\..\utils\LazyFactory\LazyFactory.csproj" />
- <ProjectReference Include="..\UserViewLib\UserViewLib.csproj" />
</ItemGroup>
-
- <Import Project="..\..\..\src\Qt.DotNet.Adapter\build\Qt.DotNet.targets" />
+ <Import Condition="'$(SolutionName)' == 'qtdotnet'" Project="..\..\src\Qt.DotNet.Adapter\build\Qt.DotNet.targets" />
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
diff --git a/examples/examples.sln b/examples/examples.sln
new file mode 100644
index 0000000..1e07462
--- /dev/null
+++ b/examples/examples.sln
@@ -0,0 +1,68 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.13.35828.75
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tutorial", "Tutorial\Tutorial.csproj", "{A0AC7F1D-2072-6FE3-752C-528B16BC9E90}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ColorPalette", "ColorPalette\ColorPalette.csproj", "{5C4ADDEF-6893-811B-E91E-9E5F7C9ECADE}"
+EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "UserView", "UserView", "{02EA681E-C7D8-13C7-8484-4AC65E1B71E8}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UserViewLib", "UserView\UserViewLib\UserViewLib.csproj", "{4E4A8F8B-858D-75F6-B906-4CC7E252C437}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UserViewCli", "UserView\UserViewCli\UserViewCli.csproj", "{C7D5A6BF-E766-2295-FCAC-58DC8B9F7C57}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UserViewQml", "UserView\UserViewQml\UserViewQml.csproj", "{BE55ED66-0433-1769-12BB-F632D34DA31B}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CityTemperatures", "CityTemperatures\CityTemperatures.csproj", "{516E99AF-0497-3922-BD96-F22C4E15E260}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Primes", "Primes\Primes.csproj", "{EB6EBA4B-967A-C5E5-DCB8-88278E2546A2}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {A0AC7F1D-2072-6FE3-752C-528B16BC9E90}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {A0AC7F1D-2072-6FE3-752C-528B16BC9E90}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {A0AC7F1D-2072-6FE3-752C-528B16BC9E90}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {A0AC7F1D-2072-6FE3-752C-528B16BC9E90}.Release|Any CPU.Build.0 = Release|Any CPU
+ {5C4ADDEF-6893-811B-E91E-9E5F7C9ECADE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {5C4ADDEF-6893-811B-E91E-9E5F7C9ECADE}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {5C4ADDEF-6893-811B-E91E-9E5F7C9ECADE}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {5C4ADDEF-6893-811B-E91E-9E5F7C9ECADE}.Release|Any CPU.Build.0 = Release|Any CPU
+ {4E4A8F8B-858D-75F6-B906-4CC7E252C437}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {4E4A8F8B-858D-75F6-B906-4CC7E252C437}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {4E4A8F8B-858D-75F6-B906-4CC7E252C437}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {4E4A8F8B-858D-75F6-B906-4CC7E252C437}.Release|Any CPU.Build.0 = Release|Any CPU
+ {C7D5A6BF-E766-2295-FCAC-58DC8B9F7C57}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {C7D5A6BF-E766-2295-FCAC-58DC8B9F7C57}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {C7D5A6BF-E766-2295-FCAC-58DC8B9F7C57}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {C7D5A6BF-E766-2295-FCAC-58DC8B9F7C57}.Release|Any CPU.Build.0 = Release|Any CPU
+ {BE55ED66-0433-1769-12BB-F632D34DA31B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {BE55ED66-0433-1769-12BB-F632D34DA31B}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {BE55ED66-0433-1769-12BB-F632D34DA31B}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {BE55ED66-0433-1769-12BB-F632D34DA31B}.Release|Any CPU.Build.0 = Release|Any CPU
+ {516E99AF-0497-3922-BD96-F22C4E15E260}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {516E99AF-0497-3922-BD96-F22C4E15E260}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {516E99AF-0497-3922-BD96-F22C4E15E260}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {516E99AF-0497-3922-BD96-F22C4E15E260}.Release|Any CPU.Build.0 = Release|Any CPU
+ {EB6EBA4B-967A-C5E5-DCB8-88278E2546A2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {EB6EBA4B-967A-C5E5-DCB8-88278E2546A2}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {EB6EBA4B-967A-C5E5-DCB8-88278E2546A2}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {EB6EBA4B-967A-C5E5-DCB8-88278E2546A2}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(NestedProjects) = preSolution
+ {4E4A8F8B-858D-75F6-B906-4CC7E252C437} = {02EA681E-C7D8-13C7-8484-4AC65E1B71E8}
+ {C7D5A6BF-E766-2295-FCAC-58DC8B9F7C57} = {02EA681E-C7D8-13C7-8484-4AC65E1B71E8}
+ {BE55ED66-0433-1769-12BB-F632D34DA31B} = {02EA681E-C7D8-13C7-8484-4AC65E1B71E8}
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {8EDCC779-E93E-447F-996C-4A197D449CAB}
+ EndGlobalSection
+EndGlobal
diff --git a/qtdotnet.sln b/qtdotnet.sln
index 100fe0b..6ba093c 100644
--- a/qtdotnet.sln
+++ b/qtdotnet.sln
@@ -35,19 +35,12 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "solution", "solution", "{0F
HOW-TO debug generated code.md = HOW-TO debug generated code.md
HOW-TO versions.md = HOW-TO versions.md
NuGet.Config = NuGet.Config
- README.md = README.md
qt_version.props = qt_version.props
+ README.md = README.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{0828626A-BAD8-4E02-99DC-3AAA15073223}"
EndProject
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GeneratorTestApp", "tests\GeneratorTestApp\GeneratorTestApp.csproj", "{585EEDF0-9149-42AC-A2FD-48B43232D32D}"
- ProjectSection(ProjectDependencies) = postProject
- {33483AF1-0493-4753-A6E6-4BB750E0E083} = {33483AF1-0493-4753-A6E6-4BB750E0E083}
- {3863807C-2F87-4E27-A9C9-8675645A8DA5} = {3863807C-2F87-4E27-A9C9-8675645A8DA5}
- {BCBA19AC-3E42-8CD9-3158-AD6B6E5053DC} = {BCBA19AC-3E42-8CD9-3158-AD6B6E5053DC}
- EndProjectSection
-EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tst_qtdotnet", "tests\tst_qtdotnet\tst_qtdotnet.vcxproj", "{4E317E0F-0565-4B8A-84F3-56ADF18C65AD}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Qt.DotNet.Adapter", "src\Qt.DotNet.Adapter\Qt.DotNet.Adapter.csproj", "{3863807C-2F87-4E27-A9C9-8675645A8DA5}"
@@ -102,6 +95,10 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Qt.Bridge.DotNet.Package",
{BCBA19AC-3E42-8CD9-3158-AD6B6E5053DC} = {BCBA19AC-3E42-8CD9-3158-AD6B6E5053DC}
EndProjectSection
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Primes", "examples\Primes\Primes.csproj", "{6F876C80-BBF0-6F6B-C550-27F7AC799574}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CityTemperatures", "examples\CityTemperatures\CityTemperatures.csproj", "{CFD4AEBB-E7B0-9B59-D04B-3A4BB8DBD576}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -112,21 +109,8 @@ Global
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {585EEDF0-9149-42AC-A2FD-48B43232D32D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {585EEDF0-9149-42AC-A2FD-48B43232D32D}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {585EEDF0-9149-42AC-A2FD-48B43232D32D}.Debug|x64.ActiveCfg = Debug|Any CPU
- {585EEDF0-9149-42AC-A2FD-48B43232D32D}.Debug|x64.Build.0 = Debug|Any CPU
- {585EEDF0-9149-42AC-A2FD-48B43232D32D}.Debug|x86.ActiveCfg = Debug|Any CPU
- {585EEDF0-9149-42AC-A2FD-48B43232D32D}.Debug|x86.Build.0 = Debug|Any CPU
- {585EEDF0-9149-42AC-A2FD-48B43232D32D}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {585EEDF0-9149-42AC-A2FD-48B43232D32D}.Release|Any CPU.Build.0 = Release|Any CPU
- {585EEDF0-9149-42AC-A2FD-48B43232D32D}.Release|x64.ActiveCfg = Release|Any CPU
- {585EEDF0-9149-42AC-A2FD-48B43232D32D}.Release|x64.Build.0 = Release|Any CPU
- {585EEDF0-9149-42AC-A2FD-48B43232D32D}.Release|x86.ActiveCfg = Release|Any CPU
- {585EEDF0-9149-42AC-A2FD-48B43232D32D}.Release|x86.Build.0 = Release|Any CPU
{4E317E0F-0565-4B8A-84F3-56ADF18C65AD}.Debug|Any CPU.ActiveCfg = Debug|x64
{4E317E0F-0565-4B8A-84F3-56ADF18C65AD}.Debug|x64.ActiveCfg = Debug|x64
- {4E317E0F-0565-4B8A-84F3-56ADF18C65AD}.Debug|x64.Build.0 = Debug|x64
{4E317E0F-0565-4B8A-84F3-56ADF18C65AD}.Debug|x86.ActiveCfg = Debug|Win32
{4E317E0F-0565-4B8A-84F3-56ADF18C65AD}.Release|Any CPU.ActiveCfg = Release|x64
{4E317E0F-0565-4B8A-84F3-56ADF18C65AD}.Release|x64.ActiveCfg = Release|x64
@@ -144,37 +128,23 @@ Global
{3863807C-2F87-4E27-A9C9-8675645A8DA5}.Release|x86.ActiveCfg = Release|Any CPU
{3863807C-2F87-4E27-A9C9-8675645A8DA5}.Release|x86.Build.0 = Release|Any CPU
{45D3DDF3-135B-46CA-B3EE-3537FCFFFBEB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {45D3DDF3-135B-46CA-B3EE-3537FCFFFBEB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{45D3DDF3-135B-46CA-B3EE-3537FCFFFBEB}.Debug|x64.ActiveCfg = Debug|Any CPU
- {45D3DDF3-135B-46CA-B3EE-3537FCFFFBEB}.Debug|x64.Build.0 = Debug|Any CPU
{45D3DDF3-135B-46CA-B3EE-3537FCFFFBEB}.Debug|x86.ActiveCfg = Debug|Any CPU
- {45D3DDF3-135B-46CA-B3EE-3537FCFFFBEB}.Debug|x86.Build.0 = Debug|Any CPU
{45D3DDF3-135B-46CA-B3EE-3537FCFFFBEB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{45D3DDF3-135B-46CA-B3EE-3537FCFFFBEB}.Release|x64.ActiveCfg = Release|Any CPU
- {45D3DDF3-135B-46CA-B3EE-3537FCFFFBEB}.Release|x64.Build.0 = Release|Any CPU
{45D3DDF3-135B-46CA-B3EE-3537FCFFFBEB}.Release|x86.ActiveCfg = Release|Any CPU
- {45D3DDF3-135B-46CA-B3EE-3537FCFFFBEB}.Release|x86.Build.0 = Release|Any CPU
{F7D48930-4705-4775-91DA-A948F30D224F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {F7D48930-4705-4775-91DA-A948F30D224F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F7D48930-4705-4775-91DA-A948F30D224F}.Debug|x64.ActiveCfg = Debug|Any CPU
- {F7D48930-4705-4775-91DA-A948F30D224F}.Debug|x64.Build.0 = Debug|Any CPU
{F7D48930-4705-4775-91DA-A948F30D224F}.Debug|x86.ActiveCfg = Debug|Any CPU
- {F7D48930-4705-4775-91DA-A948F30D224F}.Debug|x86.Build.0 = Debug|Any CPU
{F7D48930-4705-4775-91DA-A948F30D224F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F7D48930-4705-4775-91DA-A948F30D224F}.Release|x64.ActiveCfg = Release|Any CPU
- {F7D48930-4705-4775-91DA-A948F30D224F}.Release|x64.Build.0 = Release|Any CPU
{F7D48930-4705-4775-91DA-A948F30D224F}.Release|x86.ActiveCfg = Release|Any CPU
- {F7D48930-4705-4775-91DA-A948F30D224F}.Release|x86.Build.0 = Release|Any CPU
{72CA8EDA-C9CF-40C2-B7FE-4A529204EEC2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{72CA8EDA-C9CF-40C2-B7FE-4A529204EEC2}.Debug|x64.ActiveCfg = Debug|Any CPU
- {72CA8EDA-C9CF-40C2-B7FE-4A529204EEC2}.Debug|x64.Build.0 = Debug|Any CPU
{72CA8EDA-C9CF-40C2-B7FE-4A529204EEC2}.Debug|x86.ActiveCfg = Debug|Any CPU
- {72CA8EDA-C9CF-40C2-B7FE-4A529204EEC2}.Debug|x86.Build.0 = Debug|Any CPU
{72CA8EDA-C9CF-40C2-B7FE-4A529204EEC2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{72CA8EDA-C9CF-40C2-B7FE-4A529204EEC2}.Release|x64.ActiveCfg = Release|Any CPU
- {72CA8EDA-C9CF-40C2-B7FE-4A529204EEC2}.Release|x64.Build.0 = Release|Any CPU
{72CA8EDA-C9CF-40C2-B7FE-4A529204EEC2}.Release|x86.ActiveCfg = Release|Any CPU
- {72CA8EDA-C9CF-40C2-B7FE-4A529204EEC2}.Release|x86.Build.0 = Release|Any CPU
{33483AF1-0493-4753-A6E6-4BB750E0E083}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{33483AF1-0493-4753-A6E6-4BB750E0E083}.Debug|Any CPU.Build.0 = Debug|Any CPU
{33483AF1-0493-4753-A6E6-4BB750E0E083}.Debug|x64.ActiveCfg = Debug|Any CPU
@@ -188,41 +158,23 @@ Global
{33483AF1-0493-4753-A6E6-4BB750E0E083}.Release|x86.ActiveCfg = Release|Any CPU
{33483AF1-0493-4753-A6E6-4BB750E0E083}.Release|x86.Build.0 = Release|Any CPU
{5356F0D5-B6B5-0620-28D5-3F6D5F9021A7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {5356F0D5-B6B5-0620-28D5-3F6D5F9021A7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5356F0D5-B6B5-0620-28D5-3F6D5F9021A7}.Debug|x64.ActiveCfg = Debug|Any CPU
- {5356F0D5-B6B5-0620-28D5-3F6D5F9021A7}.Debug|x64.Build.0 = Debug|Any CPU
{5356F0D5-B6B5-0620-28D5-3F6D5F9021A7}.Debug|x86.ActiveCfg = Debug|Any CPU
- {5356F0D5-B6B5-0620-28D5-3F6D5F9021A7}.Debug|x86.Build.0 = Debug|Any CPU
{5356F0D5-B6B5-0620-28D5-3F6D5F9021A7}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {5356F0D5-B6B5-0620-28D5-3F6D5F9021A7}.Release|Any CPU.Build.0 = Release|Any CPU
{5356F0D5-B6B5-0620-28D5-3F6D5F9021A7}.Release|x64.ActiveCfg = Release|Any CPU
- {5356F0D5-B6B5-0620-28D5-3F6D5F9021A7}.Release|x64.Build.0 = Release|Any CPU
{5356F0D5-B6B5-0620-28D5-3F6D5F9021A7}.Release|x86.ActiveCfg = Release|Any CPU
- {5356F0D5-B6B5-0620-28D5-3F6D5F9021A7}.Release|x86.Build.0 = Release|Any CPU
{2A74AC8D-C905-28C5-5D12-D57853F0E146}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {2A74AC8D-C905-28C5-5D12-D57853F0E146}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2A74AC8D-C905-28C5-5D12-D57853F0E146}.Debug|x64.ActiveCfg = Debug|Any CPU
- {2A74AC8D-C905-28C5-5D12-D57853F0E146}.Debug|x64.Build.0 = Debug|Any CPU
{2A74AC8D-C905-28C5-5D12-D57853F0E146}.Debug|x86.ActiveCfg = Debug|Any CPU
- {2A74AC8D-C905-28C5-5D12-D57853F0E146}.Debug|x86.Build.0 = Debug|Any CPU
{2A74AC8D-C905-28C5-5D12-D57853F0E146}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {2A74AC8D-C905-28C5-5D12-D57853F0E146}.Release|Any CPU.Build.0 = Release|Any CPU
{2A74AC8D-C905-28C5-5D12-D57853F0E146}.Release|x64.ActiveCfg = Release|Any CPU
- {2A74AC8D-C905-28C5-5D12-D57853F0E146}.Release|x64.Build.0 = Release|Any CPU
{2A74AC8D-C905-28C5-5D12-D57853F0E146}.Release|x86.ActiveCfg = Release|Any CPU
- {2A74AC8D-C905-28C5-5D12-D57853F0E146}.Release|x86.Build.0 = Release|Any CPU
{7A3A3A20-35C3-38E5-E3C6-C54D67110CF9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {7A3A3A20-35C3-38E5-E3C6-C54D67110CF9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7A3A3A20-35C3-38E5-E3C6-C54D67110CF9}.Debug|x64.ActiveCfg = Debug|Any CPU
- {7A3A3A20-35C3-38E5-E3C6-C54D67110CF9}.Debug|x64.Build.0 = Debug|Any CPU
{7A3A3A20-35C3-38E5-E3C6-C54D67110CF9}.Debug|x86.ActiveCfg = Debug|Any CPU
- {7A3A3A20-35C3-38E5-E3C6-C54D67110CF9}.Debug|x86.Build.0 = Debug|Any CPU
{7A3A3A20-35C3-38E5-E3C6-C54D67110CF9}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {7A3A3A20-35C3-38E5-E3C6-C54D67110CF9}.Release|Any CPU.Build.0 = Release|Any CPU
{7A3A3A20-35C3-38E5-E3C6-C54D67110CF9}.Release|x64.ActiveCfg = Release|Any CPU
- {7A3A3A20-35C3-38E5-E3C6-C54D67110CF9}.Release|x64.Build.0 = Release|Any CPU
{7A3A3A20-35C3-38E5-E3C6-C54D67110CF9}.Release|x86.ActiveCfg = Release|Any CPU
- {7A3A3A20-35C3-38E5-E3C6-C54D67110CF9}.Release|x86.Build.0 = Release|Any CPU
{546768BB-0E84-3B76-A143-28C3849CEEF9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{546768BB-0E84-3B76-A143-28C3849CEEF9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{546768BB-0E84-3B76-A143-28C3849CEEF9}.Debug|x64.ActiveCfg = Debug|Any CPU
@@ -296,29 +248,17 @@ Global
{86FADDB9-8C48-3296-9D7A-0CCB0B9B68E3}.Release|x86.ActiveCfg = Release|Any CPU
{86FADDB9-8C48-3296-9D7A-0CCB0B9B68E3}.Release|x86.Build.0 = Release|Any CPU
{78239BC2-4B4A-6970-816C-4C1F26157596}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {78239BC2-4B4A-6970-816C-4C1F26157596}.Debug|Any CPU.Build.0 = Debug|Any CPU
{78239BC2-4B4A-6970-816C-4C1F26157596}.Debug|x64.ActiveCfg = Debug|Any CPU
- {78239BC2-4B4A-6970-816C-4C1F26157596}.Debug|x64.Build.0 = Debug|Any CPU
{78239BC2-4B4A-6970-816C-4C1F26157596}.Debug|x86.ActiveCfg = Debug|Any CPU
- {78239BC2-4B4A-6970-816C-4C1F26157596}.Debug|x86.Build.0 = Debug|Any CPU
{78239BC2-4B4A-6970-816C-4C1F26157596}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {78239BC2-4B4A-6970-816C-4C1F26157596}.Release|Any CPU.Build.0 = Release|Any CPU
{78239BC2-4B4A-6970-816C-4C1F26157596}.Release|x64.ActiveCfg = Release|Any CPU
- {78239BC2-4B4A-6970-816C-4C1F26157596}.Release|x64.Build.0 = Release|Any CPU
{78239BC2-4B4A-6970-816C-4C1F26157596}.Release|x86.ActiveCfg = Release|Any CPU
- {78239BC2-4B4A-6970-816C-4C1F26157596}.Release|x86.Build.0 = Release|Any CPU
{244D0DD3-DCE9-433B-A2C3-31B56FADF7E4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {244D0DD3-DCE9-433B-A2C3-31B56FADF7E4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{244D0DD3-DCE9-433B-A2C3-31B56FADF7E4}.Debug|x64.ActiveCfg = Debug|Any CPU
- {244D0DD3-DCE9-433B-A2C3-31B56FADF7E4}.Debug|x64.Build.0 = Debug|Any CPU
{244D0DD3-DCE9-433B-A2C3-31B56FADF7E4}.Debug|x86.ActiveCfg = Debug|Any CPU
- {244D0DD3-DCE9-433B-A2C3-31B56FADF7E4}.Debug|x86.Build.0 = Debug|Any CPU
{244D0DD3-DCE9-433B-A2C3-31B56FADF7E4}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {244D0DD3-DCE9-433B-A2C3-31B56FADF7E4}.Release|Any CPU.Build.0 = Release|Any CPU
{244D0DD3-DCE9-433B-A2C3-31B56FADF7E4}.Release|x64.ActiveCfg = Release|Any CPU
- {244D0DD3-DCE9-433B-A2C3-31B56FADF7E4}.Release|x64.Build.0 = Release|Any CPU
{244D0DD3-DCE9-433B-A2C3-31B56FADF7E4}.Release|x86.ActiveCfg = Release|Any CPU
- {244D0DD3-DCE9-433B-A2C3-31B56FADF7E4}.Release|x86.Build.0 = Release|Any CPU
{85D62EAD-95CE-685F-AB50-0BDCBA1A311A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{85D62EAD-95CE-685F-AB50-0BDCBA1A311A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{85D62EAD-95CE-685F-AB50-0BDCBA1A311A}.Debug|x64.ActiveCfg = Debug|Any CPU
@@ -331,12 +271,23 @@ Global
{85D62EAD-95CE-685F-AB50-0BDCBA1A311A}.Release|x64.Build.0 = Release|Any CPU
{85D62EAD-95CE-685F-AB50-0BDCBA1A311A}.Release|x86.ActiveCfg = Release|Any CPU
{85D62EAD-95CE-685F-AB50-0BDCBA1A311A}.Release|x86.Build.0 = Release|Any CPU
+ {6F876C80-BBF0-6F6B-C550-27F7AC799574}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {6F876C80-BBF0-6F6B-C550-27F7AC799574}.Debug|x64.ActiveCfg = Debug|Any CPU
+ {6F876C80-BBF0-6F6B-C550-27F7AC799574}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {6F876C80-BBF0-6F6B-C550-27F7AC799574}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {6F876C80-BBF0-6F6B-C550-27F7AC799574}.Release|x64.ActiveCfg = Release|Any CPU
+ {6F876C80-BBF0-6F6B-C550-27F7AC799574}.Release|x86.ActiveCfg = Release|Any CPU
+ {CFD4AEBB-E7B0-9B59-D04B-3A4BB8DBD576}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {CFD4AEBB-E7B0-9B59-D04B-3A4BB8DBD576}.Debug|x64.ActiveCfg = Debug|Any CPU
+ {CFD4AEBB-E7B0-9B59-D04B-3A4BB8DBD576}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {CFD4AEBB-E7B0-9B59-D04B-3A4BB8DBD576}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {CFD4AEBB-E7B0-9B59-D04B-3A4BB8DBD576}.Release|x64.ActiveCfg = Release|Any CPU
+ {CFD4AEBB-E7B0-9B59-D04B-3A4BB8DBD576}.Release|x86.ActiveCfg = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
- {585EEDF0-9149-42AC-A2FD-48B43232D32D} = {0828626A-BAD8-4E02-99DC-3AAA15073223}
{4E317E0F-0565-4B8A-84F3-56ADF18C65AD} = {0828626A-BAD8-4E02-99DC-3AAA15073223}
{3863807C-2F87-4E27-A9C9-8675645A8DA5} = {41193496-02AE-44FA-9A63-28E7A168A3AC}
{45D3DDF3-135B-46CA-B3EE-3537FCFFFBEB} = {0828626A-BAD8-4E02-99DC-3AAA15073223}
@@ -356,6 +307,8 @@ Global
{78239BC2-4B4A-6970-816C-4C1F26157596} = {436DDD81-054F-492E-8F7A-B9445413E3B2}
{244D0DD3-DCE9-433B-A2C3-31B56FADF7E4} = {436DDD81-054F-492E-8F7A-B9445413E3B2}
{85D62EAD-95CE-685F-AB50-0BDCBA1A311A} = {13659C36-5EDE-471A-9727-7D9A5254B993}
+ {6F876C80-BBF0-6F6B-C550-27F7AC799574} = {436DDD81-054F-492E-8F7A-B9445413E3B2}
+ {CFD4AEBB-E7B0-9B59-D04B-3A4BB8DBD576} = {436DDD81-054F-492E-8F7A-B9445413E3B2}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {E4CDB648-EF1A-4ADE-B6EA-D4E9D668E676}
diff --git a/tests/GeneratorTestApp/Properties/launchSettings.json b/tests/GeneratorTestApp/Properties/launchSettings.json
deleted file mode 100644
index bff819b..0000000
--- a/tests/GeneratorTestApp/Properties/launchSettings.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "profiles": {
- "GeneratorTestApp": {
- "commandName": "Project",
- "nativeDebugging": true,
- "hotReloadEnabled": false
- }
- }
-} \ No newline at end of file
diff --git a/tests/PackageTestApp/PackageTestApp.sln b/tests/PackageTestApp/PackageTestApp.sln
deleted file mode 100644
index 14b5a3d..0000000
--- a/tests/PackageTestApp/PackageTestApp.sln
+++ /dev/null
@@ -1,25 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio Version 17
-VisualStudioVersion = 17.13.35825.156 d17.13
-MinimumVisualStudioVersion = 10.0.40219.1
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PackageTestApp", "PackageTestApp.csproj", "{88B0E429-9586-44D6-ACBF-606B425D28DF}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Release|Any CPU = Release|Any CPU
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {88B0E429-9586-44D6-ACBF-606B425D28DF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {88B0E429-9586-44D6-ACBF-606B425D28DF}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {88B0E429-9586-44D6-ACBF-606B425D28DF}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {88B0E429-9586-44D6-ACBF-606B425D28DF}.Release|Any CPU.Build.0 = Release|Any CPU
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
- GlobalSection(ExtensibilityGlobals) = postSolution
- SolutionGuid = {22146061-C5C4-4727-A7CC-C3BA1A821872}
- EndGlobalSection
-EndGlobal