Skip to content

Commit a3dd40a

Browse files
committed
Convert to Net5
1 parent 156d75d commit a3dd40a

9 files changed

+402
-273
lines changed

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,4 +294,9 @@ __pycache__/
294294
*.btp.cs
295295
*.btm.cs
296296
*.odx.cs
297-
*.xsd.cs
297+
*.xsd.cs
298+
299+
# ProjectUpdrade & TryConvert files
300+
*.csproj.old
301+
*.vbproj.old
302+
*.bak

CS/HierarchicalDataTemplate.Net5.sln

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Microsoft Visual Studio Solution File, Format Version 12.00
2+
# Visual Studio 16
3+
VisualStudioVersion = 14.0.25420.1
4+
MinimumVisualStudioVersion = 10.0.40219.1
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HierarchicalDataTemplate", "HierarchicalDataTemplate\HierarchicalDataTemplate.Net5.csproj", "{28B52F5A-966E-4136-9D0B-619FE870E785}"
6+
EndProject
7+
Global
8+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
9+
Debug|Any CPU = Debug|Any CPU
10+
Release|Any CPU = Release|Any CPU
11+
EndGlobalSection
12+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
13+
{28B52F5A-966E-4136-9D0B-619FE870E785}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14+
{28B52F5A-966E-4136-9D0B-619FE870E785}.Debug|Any CPU.Build.0 = Debug|Any CPU
15+
{28B52F5A-966E-4136-9D0B-619FE870E785}.Release|Any CPU.ActiveCfg = Release|Any CPU
16+
{28B52F5A-966E-4136-9D0B-619FE870E785}.Release|Any CPU.Build.0 = Release|Any CPU
17+
EndGlobalSection
18+
GlobalSection(SolutionProperties) = preSolution
19+
HideSolutionNode = FALSE
20+
EndGlobalSection
21+
EndGlobal

CS/HierarchicalDataTemplate.sln

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
Microsoft Visual Studio Solution File, Format Version 12.00
2-
# Visual Studio 14
3-
VisualStudioVersion = 14.0.25420.1
4-
MinimumVisualStudioVersion = 10.0.40219.1
5-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HierarchicalDataTemplate", "HierarchicalDataTemplate\HierarchicalDataTemplate.csproj", "{28B52F5A-966E-4136-9D0B-619FE870E785}"
6-
EndProject
7-
Global
8-
GlobalSection(SolutionConfigurationPlatforms) = preSolution
9-
Debug|Any CPU = Debug|Any CPU
10-
Release|Any CPU = Release|Any CPU
11-
EndGlobalSection
12-
GlobalSection(ProjectConfigurationPlatforms) = postSolution
13-
{28B52F5A-966E-4136-9D0B-619FE870E785}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14-
{28B52F5A-966E-4136-9D0B-619FE870E785}.Debug|Any CPU.Build.0 = Debug|Any CPU
15-
{28B52F5A-966E-4136-9D0B-619FE870E785}.Release|Any CPU.ActiveCfg = Release|Any CPU
16-
{28B52F5A-966E-4136-9D0B-619FE870E785}.Release|Any CPU.Build.0 = Release|Any CPU
17-
EndGlobalSection
18-
GlobalSection(SolutionProperties) = preSolution
19-
HideSolutionNode = FALSE
20-
EndGlobalSection
21-
EndGlobal
1+
Microsoft Visual Studio Solution File, Format Version 12.00
2+
# Visual Studio 2012
3+
VisualStudioVersion = 14.0.25420.1
4+
MinimumVisualStudioVersion = 10.0.40219.1
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HierarchicalDataTemplate", "HierarchicalDataTemplate\HierarchicalDataTemplate.csproj", "{28B52F5A-966E-4136-9D0B-619FE870E785}"
6+
EndProject
7+
Global
8+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
9+
Debug|Any CPU = Debug|Any CPU
10+
Release|Any CPU = Release|Any CPU
11+
EndGlobalSection
12+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
13+
{28B52F5A-966E-4136-9D0B-619FE870E785}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14+
{28B52F5A-966E-4136-9D0B-619FE870E785}.Debug|Any CPU.Build.0 = Debug|Any CPU
15+
{28B52F5A-966E-4136-9D0B-619FE870E785}.Release|Any CPU.ActiveCfg = Release|Any CPU
16+
{28B52F5A-966E-4136-9D0B-619FE870E785}.Release|Any CPU.Build.0 = Release|Any CPU
17+
EndGlobalSection
18+
GlobalSection(SolutionProperties) = preSolution
19+
HideSolutionNode = FALSE
20+
EndGlobalSection
21+
EndGlobal
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<TargetFramework>net5.0-windows</TargetFramework>
4+
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
5+
<OutputType>WinExe</OutputType>
6+
<RootNamespace>DXApplication7</RootNamespace>
7+
<AssemblyName>DXApplication7</AssemblyName>
8+
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
9+
<UseWindowsForms>true</UseWindowsForms>
10+
<UseWPF>true</UseWPF>
11+
<Platforms>x86;AnyCPU</Platforms>
12+
<CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
13+
<DefaultItemExcludes>obj*/**</DefaultItemExcludes>
14+
</PropertyGroup>
15+
<ItemGroup>
16+
<AppDesigner Include="Properties\" />
17+
</ItemGroup>
18+
<ItemGroup>
19+
<PackageReference Include="DevExpress.Data" Version="21.1.*-*" />
20+
<PackageReference Include="DevExpress.Data.Desktop" Version="21.1.*-*" />
21+
<PackageReference Include="DevExpress.Mvvm" Version="21.1.*-*" />
22+
<PackageReference Include="DevExpress.Wpf.Accordion" Version="21.1.*-*" />
23+
<PackageReference Include="DevExpress.Wpf.Core" Version="21.1.*-*" />
24+
<PackageReference Include="DevExpress.Wpf.Reporting" Version="21.1.*-*" />
25+
<PackageReference Include="DevExpress.Wpf.Themes.All" Version="21.1.*-*" />
26+
</ItemGroup>
27+
</Project>
Lines changed: 105 additions & 102 deletions
Original file line numberDiff line numberDiff line change
@@ -1,108 +1,111 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<PropertyGroup>
4-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5-
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
6-
<ProductVersion>8.0.30703</ProductVersion>
7-
<SchemaVersion>2.0</SchemaVersion>
8-
<ProjectGuid>{28B52F5A-966E-4136-9D0B-619FE870E785}</ProjectGuid>
9-
<OutputType>WinExe</OutputType>
10-
<AppDesignerFolder>Properties</AppDesignerFolder>
11-
<RootNamespace>DXApplication7</RootNamespace>
12-
<AssemblyName>DXApplication7</AssemblyName>
13-
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
14-
<FileAlignment>512</FileAlignment>
15-
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
16-
<WarningLevel>4</WarningLevel>
17-
</PropertyGroup>
18-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19-
<PlatformTarget>AnyCPU</PlatformTarget>
20-
<DebugSymbols>true</DebugSymbols>
21-
<DebugType>full</DebugType>
22-
<Optimize>false</Optimize>
23-
<OutputPath>bin\Debug\</OutputPath>
24-
<DefineConstants>DEBUG;TRACE</DefineConstants>
25-
<ErrorReport>prompt</ErrorReport>
26-
<WarningLevel>4</WarningLevel>
27-
</PropertyGroup>
28-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
29-
<PlatformTarget>AnyCPU</PlatformTarget>
30-
<DebugType>pdbonly</DebugType>
31-
<Optimize>true</Optimize>
32-
<OutputPath>bin\Release\</OutputPath>
33-
<DefineConstants>TRACE</DefineConstants>
34-
<ErrorReport>prompt</ErrorReport>
35-
<WarningLevel>4</WarningLevel>
36-
</PropertyGroup>
37-
<ItemGroup>
38-
<Reference Include="DevExpress.Data.v17.1, Version=17.1.17.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
39-
<Reference Include="DevExpress.Mvvm.v17.1, Version=17.1.17.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
40-
<Reference Include="DevExpress.Xpf.Accordion.v17.1, Version=17.1.17.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
41-
<Reference Include="DevExpress.Xpf.Core.v17.1, Version=17.1.17.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
42-
<Reference Include="System" />
43-
<Reference Include="System.Data" />
44-
<Reference Include="System.Xml" />
45-
<Reference Include="Microsoft.CSharp" />
46-
<Reference Include="System.Core" />
47-
<Reference Include="System.Xml.Linq" />
48-
<Reference Include="System.Data.DataSetExtensions" />
49-
<Reference Include="System.Xaml">
50-
<RequiredTargetFramework>4.0</RequiredTargetFramework>
51-
</Reference>
52-
<Reference Include="WindowsBase" />
53-
<Reference Include="PresentationCore" />
54-
<Reference Include="PresentationFramework" />
55-
</ItemGroup>
56-
<ItemGroup>
57-
<ApplicationDefinition Include="App.xaml">
58-
<Generator>MSBuild:Compile</Generator>
59-
<SubType>Designer</SubType>
60-
</ApplicationDefinition>
61-
<Compile Include="ViewModel.cs" />
62-
<Page Include="MainWindow.xaml">
63-
<Generator>MSBuild:Compile</Generator>
64-
<SubType>Designer</SubType>
65-
</Page>
66-
<Compile Include="App.xaml.cs">
67-
<DependentUpon>App.xaml</DependentUpon>
68-
<SubType>Code</SubType>
69-
</Compile>
70-
<Compile Include="MainWindow.xaml.cs">
71-
<DependentUpon>MainWindow.xaml</DependentUpon>
72-
<SubType>Code</SubType>
73-
</Compile>
74-
</ItemGroup>
75-
<ItemGroup>
76-
<Compile Include="Properties\AssemblyInfo.cs">
77-
<SubType>Code</SubType>
78-
</Compile>
79-
<Compile Include="Properties\Resources.Designer.cs">
80-
<AutoGen>True</AutoGen>
81-
<DesignTime>True</DesignTime>
82-
<DependentUpon>Resources.resx</DependentUpon>
83-
</Compile>
84-
<Compile Include="Properties\Settings.Designer.cs">
85-
<AutoGen>True</AutoGen>
86-
<DependentUpon>Settings.settings</DependentUpon>
87-
<DesignTimeSharedInput>True</DesignTimeSharedInput>
88-
</Compile>
89-
<EmbeddedResource Include="Properties\Resources.resx">
90-
<Generator>ResXFileCodeGenerator</Generator>
91-
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
92-
</EmbeddedResource>
93-
<None Include="App.config" />
94-
<None Include="Properties\Settings.settings">
95-
<Generator>SettingsSingleFileGenerator</Generator>
96-
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
97-
</None>
98-
<AppDesigner Include="Properties\" />
99-
</ItemGroup>
100-
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5+
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
6+
<ProductVersion>8.0.30703</ProductVersion>
7+
<SchemaVersion>2.0</SchemaVersion>
8+
<ProjectGuid>{28B52F5A-966E-4136-9D0B-619FE870E785}</ProjectGuid>
9+
<OutputType>WinExe</OutputType>
10+
<AppDesignerFolder>Properties</AppDesignerFolder>
11+
<RootNamespace>DXApplication7</RootNamespace>
12+
<AssemblyName>DXApplication7</AssemblyName>
13+
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
14+
<FileAlignment>512</FileAlignment>
15+
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
16+
<WarningLevel>4</WarningLevel>
17+
<BaseIntermediateOutputPath>obj.NetFX</BaseIntermediateOutputPath>
18+
</PropertyGroup>
19+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
20+
<PlatformTarget>AnyCPU</PlatformTarget>
21+
<DebugSymbols>true</DebugSymbols>
22+
<DebugType>full</DebugType>
23+
<Optimize>false</Optimize>
24+
<OutputPath>bin\Debug\</OutputPath>
25+
<DefineConstants>DEBUG;TRACE</DefineConstants>
26+
<ErrorReport>prompt</ErrorReport>
27+
<WarningLevel>4</WarningLevel>
28+
</PropertyGroup>
29+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
30+
<PlatformTarget>AnyCPU</PlatformTarget>
31+
<DebugType>pdbonly</DebugType>
32+
<Optimize>true</Optimize>
33+
<OutputPath>bin\Release\</OutputPath>
34+
<DefineConstants>TRACE</DefineConstants>
35+
<ErrorReport>prompt</ErrorReport>
36+
<WarningLevel>4</WarningLevel>
37+
</PropertyGroup>
38+
<ItemGroup>
39+
<Reference Include="DevExpress.Data.v21.1, Version=21.1.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
40+
<Reference Include="DevExpress.Mvvm.v21.1, Version=21.1.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
41+
<Reference Include="DevExpress.Xpf.Accordion.v21.1, Version=21.1.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
42+
<Reference Include="DevExpress.Xpf.CodeView.v21.1, Version=21.1.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
43+
<Reference Include="DevExpress.Data.Desktop.v21.1, Version=21.1.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
44+
<Reference Include="DevExpress.Xpf.Core.v21.1, Version=21.1.5.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
45+
<Reference Include="System" />
46+
<Reference Include="System.Data" />
47+
<Reference Include="System.Xml" />
48+
<Reference Include="Microsoft.CSharp" />
49+
<Reference Include="System.Core" />
50+
<Reference Include="System.Xml.Linq" />
51+
<Reference Include="System.Data.DataSetExtensions" />
52+
<Reference Include="System.Xaml">
53+
<RequiredTargetFramework>4.0</RequiredTargetFramework>
54+
</Reference>
55+
<Reference Include="WindowsBase" />
56+
<Reference Include="PresentationCore" />
57+
<Reference Include="PresentationFramework" />
58+
</ItemGroup>
59+
<ItemGroup>
60+
<ApplicationDefinition Include="App.xaml">
61+
<Generator>MSBuild:Compile</Generator>
62+
<SubType>Designer</SubType>
63+
</ApplicationDefinition>
64+
<Compile Include="ViewModel.cs" />
65+
<Page Include="MainWindow.xaml">
66+
<Generator>MSBuild:Compile</Generator>
67+
<SubType>Designer</SubType>
68+
</Page>
69+
<Compile Include="App.xaml.cs">
70+
<DependentUpon>App.xaml</DependentUpon>
71+
<SubType>Code</SubType>
72+
</Compile>
73+
<Compile Include="MainWindow.xaml.cs">
74+
<DependentUpon>MainWindow.xaml</DependentUpon>
75+
<SubType>Code</SubType>
76+
</Compile>
77+
</ItemGroup>
78+
<ItemGroup>
79+
<Compile Include="Properties\AssemblyInfo.cs">
80+
<SubType>Code</SubType>
81+
</Compile>
82+
<Compile Include="Properties\Resources.Designer.cs">
83+
<AutoGen>True</AutoGen>
84+
<DesignTime>True</DesignTime>
85+
<DependentUpon>Resources.resx</DependentUpon>
86+
</Compile>
87+
<Compile Include="Properties\Settings.Designer.cs">
88+
<AutoGen>True</AutoGen>
89+
<DependentUpon>Settings.settings</DependentUpon>
90+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
91+
</Compile>
92+
<EmbeddedResource Include="Properties\Resources.resx">
93+
<Generator>ResXFileCodeGenerator</Generator>
94+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
95+
</EmbeddedResource>
96+
<None Include="App.config" />
97+
<None Include="Properties\Settings.settings">
98+
<Generator>SettingsSingleFileGenerator</Generator>
99+
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
100+
</None>
101+
<AppDesigner Include="Properties\" />
102+
</ItemGroup>
103+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
101104
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
102105
Other similar extension points exist, see Microsoft.Common.targets.
103106
<Target Name="BeforeBuild">
104107
</Target>
105108
<Target Name="AfterBuild">
106109
</Target>
107-
-->
108-
</Project>
110+
-->
111+
</Project>

VB/HierarchicalDataTemplate.Net5.sln

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Microsoft Visual Studio Solution File, Format Version 12.00
2+
# Visual Studio 16
3+
VisualStudioVersion = 14.0.25420.1
4+
MinimumVisualStudioVersion = 10.0.40219.1
5+
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "HierarchicalDataTemplate", "HierarchicalDataTemplate\HierarchicalDataTemplate.Net5.vbproj", "{28B52F5A-966E-4136-9D0B-619FE870E785}"
6+
EndProject
7+
Global
8+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
9+
Debug|Any CPU = Debug|Any CPU
10+
Release|Any CPU = Release|Any CPU
11+
EndGlobalSection
12+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
13+
{28B52F5A-966E-4136-9D0B-619FE870E785}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14+
{28B52F5A-966E-4136-9D0B-619FE870E785}.Debug|Any CPU.Build.0 = Debug|Any CPU
15+
{28B52F5A-966E-4136-9D0B-619FE870E785}.Release|Any CPU.ActiveCfg = Release|Any CPU
16+
{28B52F5A-966E-4136-9D0B-619FE870E785}.Release|Any CPU.Build.0 = Release|Any CPU
17+
EndGlobalSection
18+
GlobalSection(SolutionProperties) = preSolution
19+
HideSolutionNode = FALSE
20+
EndGlobalSection
21+
EndGlobal

VB/HierarchicalDataTemplate.sln

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
Microsoft Visual Studio Solution File, Format Version 12.00
2-
# Visual Studio 14
3-
VisualStudioVersion = 14.0.25420.1
4-
MinimumVisualStudioVersion = 10.0.40219.1
5-
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "HierarchicalDataTemplate", "HierarchicalDataTemplate\HierarchicalDataTemplate.vbproj", "{28B52F5A-966E-4136-9D0B-619FE870E785}"
6-
EndProject
7-
Global
8-
GlobalSection(SolutionConfigurationPlatforms) = preSolution
9-
Debug|Any CPU = Debug|Any CPU
10-
Release|Any CPU = Release|Any CPU
11-
EndGlobalSection
12-
GlobalSection(ProjectConfigurationPlatforms) = postSolution
13-
{28B52F5A-966E-4136-9D0B-619FE870E785}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14-
{28B52F5A-966E-4136-9D0B-619FE870E785}.Debug|Any CPU.Build.0 = Debug|Any CPU
15-
{28B52F5A-966E-4136-9D0B-619FE870E785}.Release|Any CPU.ActiveCfg = Release|Any CPU
16-
{28B52F5A-966E-4136-9D0B-619FE870E785}.Release|Any CPU.Build.0 = Release|Any CPU
17-
EndGlobalSection
18-
GlobalSection(SolutionProperties) = preSolution
19-
HideSolutionNode = FALSE
20-
EndGlobalSection
21-
EndGlobal
1+
Microsoft Visual Studio Solution File, Format Version 12.00
2+
# Visual Studio 2012
3+
VisualStudioVersion = 14.0.25420.1
4+
MinimumVisualStudioVersion = 10.0.40219.1
5+
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "HierarchicalDataTemplate", "HierarchicalDataTemplate\HierarchicalDataTemplate.vbproj", "{28B52F5A-966E-4136-9D0B-619FE870E785}"
6+
EndProject
7+
Global
8+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
9+
Debug|Any CPU = Debug|Any CPU
10+
Release|Any CPU = Release|Any CPU
11+
EndGlobalSection
12+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
13+
{28B52F5A-966E-4136-9D0B-619FE870E785}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14+
{28B52F5A-966E-4136-9D0B-619FE870E785}.Debug|Any CPU.Build.0 = Debug|Any CPU
15+
{28B52F5A-966E-4136-9D0B-619FE870E785}.Release|Any CPU.ActiveCfg = Release|Any CPU
16+
{28B52F5A-966E-4136-9D0B-619FE870E785}.Release|Any CPU.Build.0 = Release|Any CPU
17+
EndGlobalSection
18+
GlobalSection(SolutionProperties) = preSolution
19+
HideSolutionNode = FALSE
20+
EndGlobalSection
21+
EndGlobal

0 commit comments

Comments
 (0)