Skip to content

Commit 2459ef6

Browse files
committed
sample committed.
1 parent f850d42 commit 2459ef6

20 files changed

+1166
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1-
# wpf-datagrid-virtual-loading
1+
# WPF DataGrid Virtual Loading
22
Example shows the built-in data virtualization support in WPF DataGrid where it processes the record creations in on-demand for better loading performance.
3+
4+
In this way, datagrid provides the same loading time for 1K records and 1 million record. You can enable data virtualization in datagrid by setting EnableDataVirtualization property.

sample-application/App.config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0"?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
5+
</startup>
6+
</configuration>

sample-application/App.ico

4.19 KB
Binary file not shown.

sample-application/App.xaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<Application x:Class="DataVirtualization.App" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" StartupUri="MainWindow.xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" d1p1:Ignorable="d" xmlns:d1p1="http://schemas.openxmlformats.org/markup-compatibility/2006">
2+
<Application.Resources>
3+
4+
</Application.Resources>
5+
</Application>

sample-application/App.xaml.cs

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
#region Copyright Syncfusion Inc. 2001 - 2018
2+
// Copyright Syncfusion Inc. 2001 - 2018. All rights reserved.
3+
// Use of this code is subject to the terms of our license.
4+
// A copy of the current license can be obtained at any time by e-mailing
5+
// licensing@syncfusion.com. Any infringement will be prosecuted under
6+
// applicable laws.
7+
#endregion
8+
using System;
9+
using System.Collections.Generic;
10+
using System.Configuration;
11+
using System.Data;
12+
using System.Linq;
13+
using System.Threading.Tasks;
14+
using System.Windows;
15+
16+
namespace DataVirtualization
17+
{
18+
/// <summary>
19+
/// Interaction logic for App.xaml
20+
/// </summary>
21+
public partial class App : Application
22+
{
23+
public App()
24+
{
25+
26+
}
27+
}
28+
}
Lines changed: 137 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,137 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{C413E599-2D6D-43E5-86AA-05CE985387E0}</ProjectGuid>
8+
<OutputType>WinExe</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>DataVirtualization</RootNamespace>
11+
<AssemblyName>DataVirtualization</AssemblyName>
12+
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
13+
<FileAlignment>512</FileAlignment>
14+
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
15+
<WarningLevel>4</WarningLevel>
16+
<TargetFrameworkProfile />
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="CommonServiceLocator, Version=2.0.2.0, Culture=neutral, PublicKeyToken=489b6accfaf20ef0, processorArchitecture=MSIL">
39+
<HintPath>packages\CommonServiceLocator.2.0.2\lib\net45\CommonServiceLocator.dll</HintPath>
40+
</Reference>
41+
<Reference Include="GalaSoft.MvvmLight, Version=5.4.1.0, Culture=neutral, PublicKeyToken=e7570ab207bcb616, processorArchitecture=MSIL">
42+
<HintPath>packages\MvvmLightLibs.5.4.1.1\lib\net45\GalaSoft.MvvmLight.dll</HintPath>
43+
</Reference>
44+
<Reference Include="GalaSoft.MvvmLight.Extras, Version=5.4.1.0, Culture=neutral, PublicKeyToken=669f0b5e8f868abf, processorArchitecture=MSIL">
45+
<HintPath>packages\MvvmLightLibs.5.4.1.1\lib\net45\GalaSoft.MvvmLight.Extras.dll</HintPath>
46+
</Reference>
47+
<Reference Include="GalaSoft.MvvmLight.Platform, Version=5.4.1.0, Culture=neutral, PublicKeyToken=5f873c45e98af8a1, processorArchitecture=MSIL">
48+
<HintPath>packages\MvvmLightLibs.5.4.1.1\lib\net45\GalaSoft.MvvmLight.Platform.dll</HintPath>
49+
</Reference>
50+
<Reference Include="Syncfusion.Data.WPF, Version=16.3460.0.29, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89, processorArchitecture=MSIL">
51+
<HintPath>packages\Syncfusion.Data.WPF.16.3.0.29\lib\net46\Syncfusion.Data.WPF.dll</HintPath>
52+
</Reference>
53+
<Reference Include="Syncfusion.Licensing, Version=16.3460.0.29, Culture=neutral, PublicKeyToken=632609b4d040f6b4, processorArchitecture=MSIL">
54+
<HintPath>packages\Syncfusion.Licensing.16.3.0.29\lib\net46\Syncfusion.Licensing.dll</HintPath>
55+
</Reference>
56+
<Reference Include="Syncfusion.SfGrid.WPF, Version=16.3460.0.29, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89, processorArchitecture=MSIL">
57+
<HintPath>packages\Syncfusion.SfGrid.WPF.16.3.0.29\lib\net46\Syncfusion.SfGrid.WPF.dll</HintPath>
58+
</Reference>
59+
<Reference Include="Syncfusion.Shared.Wpf, Version=16.3460.0.29, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89, processorArchitecture=MSIL">
60+
<HintPath>packages\Syncfusion.Shared.WPF.16.3.0.29\lib\net46\Syncfusion.Shared.Wpf.dll</HintPath>
61+
</Reference>
62+
<Reference Include="System" />
63+
<Reference Include="System.Data" />
64+
<Reference Include="System.Windows.Interactivity, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
65+
<HintPath>packages\MvvmLightLibs.5.4.1.1\lib\net45\System.Windows.Interactivity.dll</HintPath>
66+
</Reference>
67+
<Reference Include="System.Xml" />
68+
<Reference Include="Microsoft.CSharp" />
69+
<Reference Include="System.Core" />
70+
<Reference Include="System.Xml.Linq" />
71+
<Reference Include="System.Data.DataSetExtensions" />
72+
<Reference Include="System.Xaml">
73+
<RequiredTargetFramework>4.0</RequiredTargetFramework>
74+
</Reference>
75+
<Reference Include="WindowsBase" />
76+
<Reference Include="PresentationCore" />
77+
<Reference Include="PresentationFramework" />
78+
</ItemGroup>
79+
<ItemGroup>
80+
<ApplicationDefinition Include="App.xaml">
81+
<Generator>MSBuild:Compile</Generator>
82+
<SubType>Designer</SubType>
83+
</ApplicationDefinition>
84+
<Compile Include="ViewModel\ViewModel.cs" />
85+
<Page Include="MainWindow.xaml">
86+
<Generator>MSBuild:Compile</Generator>
87+
<SubType>Designer</SubType>
88+
</Page>
89+
<Compile Include="App.xaml.cs">
90+
<DependentUpon>App.xaml</DependentUpon>
91+
<SubType>Code</SubType>
92+
</Compile>
93+
<Compile Include="MainWindow.xaml.cs">
94+
<DependentUpon>MainWindow.xaml</DependentUpon>
95+
<SubType>Code</SubType>
96+
</Compile>
97+
</ItemGroup>
98+
<ItemGroup>
99+
<Compile Include="Model\Model.cs" />
100+
<Compile Include="Properties\AssemblyInfo.cs">
101+
<SubType>Code</SubType>
102+
</Compile>
103+
<Compile Include="Properties\Resources.Designer.cs">
104+
<AutoGen>True</AutoGen>
105+
<DesignTime>True</DesignTime>
106+
<DependentUpon>Resources.resx</DependentUpon>
107+
</Compile>
108+
<Compile Include="Properties\Settings.Designer.cs">
109+
<AutoGen>True</AutoGen>
110+
<DependentUpon>Settings.settings</DependentUpon>
111+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
112+
</Compile>
113+
<EmbeddedResource Include="Properties\Resources.resx">
114+
<Generator>ResXFileCodeGenerator</Generator>
115+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
116+
</EmbeddedResource>
117+
<None Include="packages.config" />
118+
<None Include="Properties\Settings.settings">
119+
<Generator>SettingsSingleFileGenerator</Generator>
120+
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
121+
</None>
122+
<AppDesigner Include="Properties\" />
123+
</ItemGroup>
124+
<ItemGroup>
125+
</ItemGroup>
126+
<ItemGroup>
127+
<Resource Include="App.ico" />
128+
</ItemGroup>
129+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
130+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
131+
Other similar extension points exist, see Microsoft.Common.targets.
132+
<Target Name="BeforeBuild">
133+
</Target>
134+
<Target Name="AfterBuild">
135+
</Target>
136+
-->
137+
</Project>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<ProjectView>ShowAllFiles</ProjectView>
5+
</PropertyGroup>
6+
</Project>
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 14
4+
VisualStudioVersion = 14.0.23103.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataVirtualization_2015", "DataVirtualization_2015.csproj", "{C413E599-2D6D-43E5-86AA-05CE985387E0}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{C413E599-2D6D-43E5-86AA-05CE985387E0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{C413E599-2D6D-43E5-86AA-05CE985387E0}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{C413E599-2D6D-43E5-86AA-05CE985387E0}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{C413E599-2D6D-43E5-86AA-05CE985387E0}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
EndGlobal
Lines changed: 137 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,137 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{C413E599-2D6D-43E5-86AA-05CE985387E0}</ProjectGuid>
8+
<OutputType>WinExe</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>DataVirtualization</RootNamespace>
11+
<AssemblyName>DataVirtualization</AssemblyName>
12+
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
13+
<FileAlignment>512</FileAlignment>
14+
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
15+
<WarningLevel>4</WarningLevel>
16+
<TargetFrameworkProfile />
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="CommonServiceLocator, Version=2.0.2.0, Culture=neutral, PublicKeyToken=489b6accfaf20ef0, processorArchitecture=MSIL">
39+
<HintPath>packages\CommonServiceLocator.2.0.2\lib\net45\CommonServiceLocator.dll</HintPath>
40+
</Reference>
41+
<Reference Include="GalaSoft.MvvmLight, Version=5.4.1.0, Culture=neutral, PublicKeyToken=e7570ab207bcb616, processorArchitecture=MSIL">
42+
<HintPath>packages\MvvmLightLibs.5.4.1.1\lib\net45\GalaSoft.MvvmLight.dll</HintPath>
43+
</Reference>
44+
<Reference Include="GalaSoft.MvvmLight.Extras, Version=5.4.1.0, Culture=neutral, PublicKeyToken=669f0b5e8f868abf, processorArchitecture=MSIL">
45+
<HintPath>packages\MvvmLightLibs.5.4.1.1\lib\net45\GalaSoft.MvvmLight.Extras.dll</HintPath>
46+
</Reference>
47+
<Reference Include="GalaSoft.MvvmLight.Platform, Version=5.4.1.0, Culture=neutral, PublicKeyToken=5f873c45e98af8a1, processorArchitecture=MSIL">
48+
<HintPath>packages\MvvmLightLibs.5.4.1.1\lib\net45\GalaSoft.MvvmLight.Platform.dll</HintPath>
49+
</Reference>
50+
<Reference Include="Syncfusion.Data.WPF, Version=16.3460.0.29, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89, processorArchitecture=MSIL">
51+
<HintPath>packages\Syncfusion.Data.WPF.16.3.0.29\lib\net46\Syncfusion.Data.WPF.dll</HintPath>
52+
</Reference>
53+
<Reference Include="Syncfusion.Licensing, Version=16.3460.0.29, Culture=neutral, PublicKeyToken=632609b4d040f6b4, processorArchitecture=MSIL">
54+
<HintPath>packages\Syncfusion.Licensing.16.3.0.29\lib\net46\Syncfusion.Licensing.dll</HintPath>
55+
</Reference>
56+
<Reference Include="Syncfusion.SfGrid.WPF, Version=16.3460.0.29, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89, processorArchitecture=MSIL">
57+
<HintPath>packages\Syncfusion.SfGrid.WPF.16.3.0.29\lib\net46\Syncfusion.SfGrid.WPF.dll</HintPath>
58+
</Reference>
59+
<Reference Include="Syncfusion.Shared.Wpf, Version=16.3460.0.29, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89, processorArchitecture=MSIL">
60+
<HintPath>packages\Syncfusion.Shared.WPF.16.3.0.29\lib\net46\Syncfusion.Shared.Wpf.dll</HintPath>
61+
</Reference>
62+
<Reference Include="System" />
63+
<Reference Include="System.Data" />
64+
<Reference Include="System.Windows.Interactivity, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
65+
<HintPath>packages\MvvmLightLibs.5.4.1.1\lib\net45\System.Windows.Interactivity.dll</HintPath>
66+
</Reference>
67+
<Reference Include="System.Xml" />
68+
<Reference Include="Microsoft.CSharp" />
69+
<Reference Include="System.Core" />
70+
<Reference Include="System.Xml.Linq" />
71+
<Reference Include="System.Data.DataSetExtensions" />
72+
<Reference Include="System.Xaml">
73+
<RequiredTargetFramework>4.0</RequiredTargetFramework>
74+
</Reference>
75+
<Reference Include="WindowsBase" />
76+
<Reference Include="PresentationCore" />
77+
<Reference Include="PresentationFramework" />
78+
</ItemGroup>
79+
<ItemGroup>
80+
<ApplicationDefinition Include="App.xaml">
81+
<Generator>MSBuild:Compile</Generator>
82+
<SubType>Designer</SubType>
83+
</ApplicationDefinition>
84+
<Page Include="MainWindow.xaml">
85+
<Generator>MSBuild:Compile</Generator>
86+
<SubType>Designer</SubType>
87+
</Page>
88+
<Compile Include="App.xaml.cs">
89+
<DependentUpon>App.xaml</DependentUpon>
90+
<SubType>Code</SubType>
91+
</Compile>
92+
<Compile Include="Model\Model.cs" />
93+
<Compile Include="ViewModel\ViewModel.cs" />
94+
<Compile Include="MainWindow.xaml.cs">
95+
<DependentUpon>MainWindow.xaml</DependentUpon>
96+
<SubType>Code</SubType>
97+
</Compile>
98+
</ItemGroup>
99+
<ItemGroup>
100+
<Compile Include="Properties\AssemblyInfo.cs">
101+
<SubType>Code</SubType>
102+
</Compile>
103+
<Compile Include="Properties\Resources.Designer.cs">
104+
<AutoGen>True</AutoGen>
105+
<DesignTime>True</DesignTime>
106+
<DependentUpon>Resources.resx</DependentUpon>
107+
</Compile>
108+
<Compile Include="Properties\Settings.Designer.cs">
109+
<AutoGen>True</AutoGen>
110+
<DependentUpon>Settings.settings</DependentUpon>
111+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
112+
</Compile>
113+
<EmbeddedResource Include="Properties\Resources.resx">
114+
<Generator>ResXFileCodeGenerator</Generator>
115+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
116+
</EmbeddedResource>
117+
<None Include="packages.config" />
118+
<None Include="Properties\Settings.settings">
119+
<Generator>SettingsSingleFileGenerator</Generator>
120+
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
121+
</None>
122+
<AppDesigner Include="Properties\" />
123+
</ItemGroup>
124+
<ItemGroup>
125+
</ItemGroup>
126+
<ItemGroup>
127+
<Resource Include="App.ico" />
128+
</ItemGroup>
129+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
130+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
131+
Other similar extension points exist, see Microsoft.Common.targets.
132+
<Target Name="BeforeBuild">
133+
</Target>
134+
<Target Name="AfterBuild">
135+
</Target>
136+
-->
137+
</Project>
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 15
4+
VisualStudioVersion 15.0.26020.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataVirtualization_2017", "DataVirtualization_2017.csproj", "{C413E599-2D6D-43E5-86AA-05CE985387E0}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{C413E599-2D6D-43E5-86AA-05CE985387E0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{C413E599-2D6D-43E5-86AA-05CE985387E0}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{C413E599-2D6D-43E5-86AA-05CE985387E0}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{C413E599-2D6D-43E5-86AA-05CE985387E0}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
EndGlobal

0 commit comments

Comments
 (0)