Skip to content

Commit a07e133

Browse files
authored
Merge pull request #5 from DevExpress-Examples/21.2.2+NEW
CRUD examples
2 parents e9d7f25 + 4c03d51 commit a07e133

File tree

1,250 files changed

+49140
-2043
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,250 files changed

+49140
-2043
lines changed

CS.sln

Lines changed: 253 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<configSections>
4+
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
5+
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
6+
</configSections>
7+
<startup>
8+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
9+
</startup>
10+
<entityFramework>
11+
<providers>
12+
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
13+
</providers>
14+
</entityFramework>
15+
<runtime>
16+
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
17+
<dependentAssembly>
18+
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
19+
<bindingRedirect oldVersion="0.0.0.0-4.0.6.0" newVersion="4.0.6.0" />
20+
</dependentAssembly>
21+
<dependentAssembly>
22+
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
23+
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" />
24+
</dependentAssembly>
25+
<dependentAssembly>
26+
<assemblyIdentity name="Microsoft.Extensions.Primitives" publicKeyToken="adb9793829ddae60" culture="neutral" />
27+
<bindingRedirect oldVersion="0.0.0.0-3.1.18.0" newVersion="3.1.18.0" />
28+
</dependentAssembly>
29+
<dependentAssembly>
30+
<assemblyIdentity name="Microsoft.Extensions.Configuration.Abstractions" publicKeyToken="adb9793829ddae60" culture="neutral" />
31+
<bindingRedirect oldVersion="0.0.0.0-3.1.18.0" newVersion="3.1.18.0" />
32+
</dependentAssembly>
33+
<dependentAssembly>
34+
<assemblyIdentity name="Microsoft.Extensions.DependencyInjection.Abstractions" publicKeyToken="adb9793829ddae60" culture="neutral" />
35+
<bindingRedirect oldVersion="0.0.0.0-3.1.18.0" newVersion="3.1.18.0" />
36+
</dependentAssembly>
37+
<dependentAssembly>
38+
<assemblyIdentity name="Microsoft.Extensions.Caching.Abstractions" publicKeyToken="adb9793829ddae60" culture="neutral" />
39+
<bindingRedirect oldVersion="0.0.0.0-3.1.18.0" newVersion="3.1.18.0" />
40+
</dependentAssembly>
41+
<dependentAssembly>
42+
<assemblyIdentity name="Microsoft.Extensions.Options" publicKeyToken="adb9793829ddae60" culture="neutral" />
43+
<bindingRedirect oldVersion="0.0.0.0-3.1.18.0" newVersion="3.1.18.0" />
44+
</dependentAssembly>
45+
<dependentAssembly>
46+
<assemblyIdentity name="Microsoft.Extensions.Logging.Abstractions" publicKeyToken="adb9793829ddae60" culture="neutral" />
47+
<bindingRedirect oldVersion="0.0.0.0-3.1.18.0" newVersion="3.1.18.0" />
48+
</dependentAssembly>
49+
<dependentAssembly>
50+
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
51+
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
52+
</dependentAssembly>
53+
<dependentAssembly>
54+
<assemblyIdentity name="Microsoft.Extensions.DependencyInjection" publicKeyToken="adb9793829ddae60" culture="neutral" />
55+
<bindingRedirect oldVersion="0.0.0.0-3.1.18.0" newVersion="3.1.18.0" />
56+
</dependentAssembly>
57+
<dependentAssembly>
58+
<assemblyIdentity name="System.ComponentModel.Annotations" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
59+
<bindingRedirect oldVersion="0.0.0.0-4.2.1.0" newVersion="4.2.1.0" />
60+
</dependentAssembly>
61+
</assemblyBinding>
62+
</runtime>
63+
</configuration>

CS/GridControlCRUDMVVM/App.xaml renamed to CS/CodeBehind/EFCore/InfiniteAsyncSource/App.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
<Application x:Class="GridControlCRUDMVVM.App"
1+
<Application x:Class="EFCoreIssues.App"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns:local="clr-namespace:GridControlCRUDMVVM"
4+
xmlns:local="clr-namespace:EFCoreIssues"
55
StartupUri="MainWindow.xaml">
66
<Application.Resources>
77

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
using EFCoreIssues.Issues;
2+
using System;
3+
using System.Collections.Generic;
4+
using System.Configuration;
5+
using System.Data;
6+
using System.Linq;
7+
using System.Threading.Tasks;
8+
using System.Windows;
9+
10+
namespace EFCoreIssues {
11+
/// <summary>
12+
/// Interaction logic for App.xaml
13+
/// </summary>
14+
public partial class App : Application {
15+
public App() {
16+
IssuesContextInitializer.Seed();
17+
}
18+
}
19+
}
Lines changed: 215 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,215 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="..\..\..\..\packages\EntityFramework.6.4.4\build\EntityFramework.props" Condition="Exists('..\..\..\..\packages\EntityFramework.6.4.4\build\EntityFramework.props')" />
4+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
5+
<PropertyGroup>
6+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
7+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
8+
<ProjectGuid>{B7E6D722-D306-C409-A1F5-6AEAFB21A281}</ProjectGuid>
9+
<OutputType>WinExe</OutputType>
10+
<RootNamespace>EFCoreIssues</RootNamespace>
11+
<AssemblyName>EFCoreIssues</AssemblyName>
12+
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
13+
<FileAlignment>512</FileAlignment>
14+
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
15+
<WarningLevel>4</WarningLevel>
16+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
17+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
18+
<Deterministic>true</Deterministic>
19+
<NuGetPackageImportStamp>
20+
</NuGetPackageImportStamp>
21+
<TargetFrameworkProfile />
22+
</PropertyGroup>
23+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
24+
<PlatformTarget>AnyCPU</PlatformTarget>
25+
<DebugSymbols>true</DebugSymbols>
26+
<DebugType>full</DebugType>
27+
<Optimize>false</Optimize>
28+
<OutputPath>bin\Debug\</OutputPath>
29+
<DefineConstants>DEBUG;TRACE</DefineConstants>
30+
<ErrorReport>prompt</ErrorReport>
31+
<WarningLevel>4</WarningLevel>
32+
</PropertyGroup>
33+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
34+
<PlatformTarget>AnyCPU</PlatformTarget>
35+
<DebugType>pdbonly</DebugType>
36+
<Optimize>true</Optimize>
37+
<OutputPath>bin\Release\</OutputPath>
38+
<DefineConstants>TRACE</DefineConstants>
39+
<ErrorReport>prompt</ErrorReport>
40+
<WarningLevel>4</WarningLevel>
41+
</PropertyGroup>
42+
<ItemGroup>
43+
<Reference Include="Microsoft.Bcl.AsyncInterfaces, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
44+
<HintPath>..\..\..\..\packages\Microsoft.Bcl.AsyncInterfaces.1.1.1\lib\net461\Microsoft.Bcl.AsyncInterfaces.dll</HintPath>
45+
</Reference>
46+
<Reference Include="Microsoft.Bcl.HashCode, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
47+
<HintPath>..\..\..\..\packages\Microsoft.Bcl.HashCode.1.1.1\lib\net461\Microsoft.Bcl.HashCode.dll</HintPath>
48+
</Reference>
49+
<Reference Include="Microsoft.EntityFrameworkCore, Version=3.1.18.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
50+
<HintPath>..\..\..\..\packages\Microsoft.EntityFrameworkCore.3.1.18\lib\netstandard2.0\Microsoft.EntityFrameworkCore.dll</HintPath>
51+
</Reference>
52+
<Reference Include="Microsoft.EntityFrameworkCore.Abstractions, Version=3.1.18.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
53+
<HintPath>..\..\..\..\packages\Microsoft.EntityFrameworkCore.Abstractions.3.1.18\lib\netstandard2.0\Microsoft.EntityFrameworkCore.Abstractions.dll</HintPath>
54+
</Reference>
55+
<Reference Include="Microsoft.EntityFrameworkCore.InMemory, Version=3.1.18.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
56+
<HintPath>..\..\..\..\packages\Microsoft.EntityFrameworkCore.InMemory.3.1.18\lib\netstandard2.0\Microsoft.EntityFrameworkCore.InMemory.dll</HintPath>
57+
</Reference>
58+
<Reference Include="Microsoft.Extensions.Caching.Abstractions, Version=3.1.18.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
59+
<HintPath>..\..\..\..\packages\Microsoft.Extensions.Caching.Abstractions.3.1.18\lib\netstandard2.0\Microsoft.Extensions.Caching.Abstractions.dll</HintPath>
60+
</Reference>
61+
<Reference Include="Microsoft.Extensions.Caching.Memory, Version=3.1.18.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
62+
<HintPath>..\..\..\..\packages\Microsoft.Extensions.Caching.Memory.3.1.18\lib\netstandard2.0\Microsoft.Extensions.Caching.Memory.dll</HintPath>
63+
</Reference>
64+
<Reference Include="Microsoft.Extensions.Configuration, Version=3.1.18.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
65+
<HintPath>..\..\..\..\packages\Microsoft.Extensions.Configuration.3.1.18\lib\netstandard2.0\Microsoft.Extensions.Configuration.dll</HintPath>
66+
</Reference>
67+
<Reference Include="Microsoft.Extensions.Configuration.Abstractions, Version=3.1.18.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
68+
<HintPath>..\..\..\..\packages\Microsoft.Extensions.Configuration.Abstractions.3.1.18\lib\netstandard2.0\Microsoft.Extensions.Configuration.Abstractions.dll</HintPath>
69+
</Reference>
70+
<Reference Include="Microsoft.Extensions.Configuration.Binder, Version=3.1.18.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
71+
<HintPath>..\..\..\..\packages\Microsoft.Extensions.Configuration.Binder.3.1.18\lib\netstandard2.0\Microsoft.Extensions.Configuration.Binder.dll</HintPath>
72+
</Reference>
73+
<Reference Include="Microsoft.Extensions.DependencyInjection, Version=3.1.18.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
74+
<HintPath>..\..\..\..\packages\Microsoft.Extensions.DependencyInjection.3.1.18\lib\net461\Microsoft.Extensions.DependencyInjection.dll</HintPath>
75+
</Reference>
76+
<Reference Include="Microsoft.Extensions.DependencyInjection.Abstractions, Version=3.1.18.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
77+
<HintPath>..\..\..\..\packages\Microsoft.Extensions.DependencyInjection.Abstractions.3.1.18\lib\netstandard2.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll</HintPath>
78+
</Reference>
79+
<Reference Include="Microsoft.Extensions.Logging, Version=3.1.18.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
80+
<HintPath>..\..\..\..\packages\Microsoft.Extensions.Logging.3.1.18\lib\netstandard2.0\Microsoft.Extensions.Logging.dll</HintPath>
81+
</Reference>
82+
<Reference Include="Microsoft.Extensions.Logging.Abstractions, Version=3.1.18.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
83+
<HintPath>..\..\..\..\packages\Microsoft.Extensions.Logging.Abstractions.3.1.18\lib\netstandard2.0\Microsoft.Extensions.Logging.Abstractions.dll</HintPath>
84+
</Reference>
85+
<Reference Include="Microsoft.Extensions.Options, Version=3.1.18.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
86+
<HintPath>..\..\..\..\packages\Microsoft.Extensions.Options.3.1.18\lib\netstandard2.0\Microsoft.Extensions.Options.dll</HintPath>
87+
</Reference>
88+
<Reference Include="Microsoft.Extensions.Primitives, Version=3.1.18.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
89+
<HintPath>..\..\..\..\packages\Microsoft.Extensions.Primitives.3.1.18\lib\netstandard2.0\Microsoft.Extensions.Primitives.dll</HintPath>
90+
</Reference>
91+
<Reference Include="System" />
92+
<Reference Include="System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
93+
<HintPath>..\..\..\..\packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll</HintPath>
94+
</Reference>
95+
<Reference Include="System.Collections.Immutable, Version=1.2.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
96+
<HintPath>..\..\..\..\packages\System.Collections.Immutable.1.7.1\lib\net461\System.Collections.Immutable.dll</HintPath>
97+
</Reference>
98+
<Reference Include="System.ComponentModel.Annotations, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
99+
<HintPath>..\..\..\..\packages\System.ComponentModel.Annotations.4.7.0\lib\net461\System.ComponentModel.Annotations.dll</HintPath>
100+
</Reference>
101+
<Reference Include="System.ComponentModel.DataAnnotations" />
102+
<Reference Include="System.Data" />
103+
<Reference Include="System.Diagnostics.DiagnosticSource, Version=4.0.5.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
104+
<HintPath>..\..\..\..\packages\System.Diagnostics.DiagnosticSource.4.7.1\lib\net46\System.Diagnostics.DiagnosticSource.dll</HintPath>
105+
</Reference>
106+
<Reference Include="System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
107+
<HintPath>..\..\..\..\packages\System.Memory.4.5.4\lib\net461\System.Memory.dll</HintPath>
108+
</Reference>
109+
<Reference Include="System.Numerics" />
110+
<Reference Include="System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
111+
<HintPath>..\..\..\..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll</HintPath>
112+
</Reference>
113+
<Reference Include="System.Runtime.CompilerServices.Unsafe, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
114+
<HintPath>..\..\..\..\packages\System.Runtime.CompilerServices.Unsafe.4.7.1\lib\net461\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
115+
</Reference>
116+
<Reference Include="System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
117+
<HintPath>..\..\..\..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll</HintPath>
118+
</Reference>
119+
<Reference Include="System.Xml" />
120+
<Reference Include="Microsoft.CSharp" />
121+
<Reference Include="System.Core" />
122+
<Reference Include="System.Xml.Linq" />
123+
<Reference Include="System.Data.DataSetExtensions" />
124+
<Reference Include="System.Net.Http" />
125+
<Reference Include="System.Xaml">
126+
<RequiredTargetFramework>4.0</RequiredTargetFramework>
127+
</Reference>
128+
<Reference Include="WindowsBase" />
129+
<Reference Include="PresentationCore" />
130+
<Reference Include="PresentationFramework" />
131+
</ItemGroup>
132+
<ItemGroup>
133+
<Reference Include="DevExpress.Mvvm.v21.2">
134+
<Private>False</Private>
135+
</Reference>
136+
<Reference Include="DevExpress.Data.v21.2">
137+
<Private>False</Private>
138+
</Reference>
139+
<Reference Include="DevExpress.Printing.v21.2.Core">
140+
<Private>False</Private>
141+
</Reference>
142+
<Reference Include="DevExpress.Data.Desktop.v21.2">
143+
<Private>False</Private>
144+
</Reference>
145+
<Reference Include="DevExpress.Images.v21.2">
146+
<Private>False</Private>
147+
</Reference>
148+
<Reference Include="DevExpress.Xpf.Core.v21.2">
149+
<Private>False</Private>
150+
</Reference>
151+
<Reference Include="DevExpress.Xpf.LayoutControl.v21.2">
152+
<Private>False</Private>
153+
</Reference>
154+
<Reference Include="DevExpress.Xpf.Grid.v21.2">
155+
<Private>False</Private>
156+
</Reference>
157+
<Reference Include="DevExpress.Xpf.Grid.v21.2.Core">
158+
<Private>False</Private>
159+
</Reference>
160+
<Reference Include="DevExpress.Xpf.Grid.v21.2.Extensions">
161+
<Private>False</Private>
162+
</Reference>
163+
</ItemGroup>
164+
<ItemGroup>
165+
<ApplicationDefinition Include="App.xaml">
166+
<Generator>MSBuild:Compile</Generator>
167+
<SubType>Designer</SubType>
168+
</ApplicationDefinition>
169+
<Page Include="MainWindow.xaml">
170+
<Generator>MSBuild:Compile</Generator>
171+
<SubType>Designer</SubType>
172+
</Page>
173+
<Compile Include="App.xaml.cs">
174+
<DependentUpon>App.xaml</DependentUpon>
175+
<SubType>Code</SubType>
176+
</Compile>
177+
<Compile Include="Issues\Issue.cs" />
178+
<Compile Include="Issues\IssuesContext.cs" />
179+
<Compile Include="Issues\IssuesContextInitializer.cs" />
180+
<Compile Include="Issues\OutlookDataGenerator.cs" />
181+
<Compile Include="Issues\User.cs" />
182+
<Compile Include="MainWindow.xaml.cs">
183+
<DependentUpon>MainWindow.xaml</DependentUpon>
184+
<SubType>Code</SubType>
185+
</Compile>
186+
</ItemGroup>
187+
<ItemGroup>
188+
<Compile Include="Properties\AssemblyInfo.cs">
189+
<SubType>Code</SubType>
190+
</Compile>
191+
<Compile Include="Properties\Resources.Designer.cs">
192+
<AutoGen>True</AutoGen>
193+
<DesignTime>True</DesignTime>
194+
<DependentUpon>Resources.resx</DependentUpon>
195+
</Compile>
196+
<Compile Include="Properties\Settings.Designer.cs">
197+
<AutoGen>True</AutoGen>
198+
<DependentUpon>Settings.settings</DependentUpon>
199+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
200+
</Compile>
201+
<EmbeddedResource Include="Properties\Resources.resx">
202+
<Generator>ResXFileCodeGenerator</Generator>
203+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
204+
</EmbeddedResource>
205+
<None Include="packages.config" />
206+
<None Include="Properties\Settings.settings">
207+
<Generator>SettingsSingleFileGenerator</Generator>
208+
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
209+
</None>
210+
</ItemGroup>
211+
<ItemGroup>
212+
<None Include="App.config" />
213+
</ItemGroup>
214+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
215+
</Project>
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
1-
1+
22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 16
4-
VisualStudioVersion = 16.0.29806.167
4+
VisualStudioVersion = 16.0.30804.86
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GridControlCRUDMVVM", "GridControlCRUDMVVM.csproj", "{69E85A61-E7D4-4C9D-A433-13E742AE30BC}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "InfiniteAsyncSource", "InfiniteAsyncSource.csproj", "{B7E6D722-D306-C409-A1F5-6AEAFB21A281}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1010
Debug|Any CPU = Debug|Any CPU
1111
Release|Any CPU = Release|Any CPU
1212
EndGlobalSection
1313
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14-
{69E85A61-E7D4-4C9D-A433-13E742AE30BC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15-
{69E85A61-E7D4-4C9D-A433-13E742AE30BC}.Debug|Any CPU.Build.0 = Debug|Any CPU
16-
{69E85A61-E7D4-4C9D-A433-13E742AE30BC}.Release|Any CPU.ActiveCfg = Release|Any CPU
17-
{69E85A61-E7D4-4C9D-A433-13E742AE30BC}.Release|Any CPU.Build.0 = Release|Any CPU
14+
{B7E6D722-D306-C409-A1F5-6AEAFB21A281}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{B7E6D722-D306-C409-A1F5-6AEAFB21A281}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{B7E6D722-D306-C409-A1F5-6AEAFB21A281}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{B7E6D722-D306-C409-A1F5-6AEAFB21A281}.Release|Any CPU.Build.0 = Release|Any CPU
1818
EndGlobalSection
1919
GlobalSection(SolutionProperties) = preSolution
2020
HideSolutionNode = FALSE
2121
EndGlobalSection
2222
GlobalSection(ExtensibilityGlobals) = postSolution
23-
SolutionGuid = {51597E69-ADA1-4945-9493-FC7C9FB65AD2}
23+
SolutionGuid = {D8E8433C-CD55-4F5F-AB3A-BFF61AF74889}
2424
EndGlobalSection
2525
EndGlobal

0 commit comments

Comments
 (0)