Skip to content

Commit 963954a

Browse files
authored
Update solution files (dotnet#92209)
* Update infra to include tools P2Ps in a tools folder * Update solution files in reaction to illink P2P changes
1 parent 19445f0 commit 963954a

File tree

203 files changed

+20356
-1231
lines changed

Some content is hidden

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

203 files changed

+20356
-1231
lines changed

Directory.Build.targets

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
<Import Project="$(RepositoryEngineeringDir)generatorProjects.targets" Condition="'$(IsGeneratorProject)' == 'true'" />
1616
<Import Project="$(RepositoryEngineeringDir)resolveContract.targets" Condition="'$(IsSourceProject)' == 'true'" />
1717
<Import Project="$(RepositoryEngineeringDir)packaging.targets" Condition="'$(IsPackable)' == 'true' and '$(MSBuildProjectExtension)' != '.pkgproj'" />
18+
<Import Project="$(RepositoryEngineeringDir)slngen.targets" Condition="'$(IsSlnGen)' == 'true'" />
1819

1920
<!--
2021
When .NET gets built from source, make the SDK aware there are bootstrap packages

eng/slngen.targets

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
<Project>
2+
23
<PropertyGroup>
3-
<SlnGenSolutionFolder Condition="'$(IsGeneratorProject)' == 'true'">gen</SlnGenSolutionFolder>
4-
<SlnGenSolutionFolder Condition="'$(IsReferenceAssemblyProject)' == 'true'">ref</SlnGenSolutionFolder>
5-
<SlnGenSolutionFolder Condition="'$(IsTestProject)' == 'true' or '$(IsTrimmingTestProject)' == 'true' or '$(IsTestSupportProject)' == 'true'">tests</SlnGenSolutionFolder>
6-
<SlnGenSolutionFolder Condition="'$(SlnGenSolutionFolder)' == ''">src</SlnGenSolutionFolder>
4+
<SlnGenSolutionFolder Condition="'$(IsGeneratorProject)' == 'true'">$(SlnGenSolutionFolder)gen</SlnGenSolutionFolder>
5+
<SlnGenSolutionFolder Condition="'$(IsReferenceAssemblyProject)' == 'true'">$(SlnGenSolutionFolder)ref</SlnGenSolutionFolder>
6+
<SlnGenSolutionFolder Condition="'$(IsTestProject)' == 'true' or '$(IsTrimmingTestProject)' == 'true' or '$(IsTestSupportProject)' == 'true'">$(SlnGenSolutionFolder)tests</SlnGenSolutionFolder>
7+
<SlnGenSolutionFolder Condition="'$(IsSourceProject)' == 'true' or '$(SlnGenSolutionFolder)' == ''">$(SlnGenSolutionFolder)src</SlnGenSolutionFolder>
78
</PropertyGroup>
9+
810
</Project>

src/libraries/Directory.Build.targets

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,6 @@
125125
<Import Project="$(RepositoryEngineeringDir)testing\runtimeConfiguration.targets" />
126126
<Import Project="$(RepositoryEngineeringDir)testing\runsettings.targets" Condition="'$(EnableRunSettingsSupport)' == 'true'" />
127127
<Import Project="$(RepositoryEngineeringDir)testing\coverage.targets" Condition="'$(EnableRunSettingsSupport)' == 'true' or '$(EnableCoverageSupport)' == 'true'" />
128-
<Import Project="$(RepositoryEngineeringDir)slngen.targets" Condition="'$(IsSlnGen)' == 'true'" />
129128

130129
<Import Project="$(RepositoryEngineeringDir)illink.targets" Condition="'$(IsSourceProject)' == 'true' or '$(ExplicitlyImportCustomILLinkTargets)' == 'true'" />
131130
<Import Project="$(RepositoryEngineeringDir)AvoidRestoreCycleOnSelfReference.targets" Condition="'$(AvoidRestoreCycleOnSelfReference)' == 'true'" />

src/libraries/Microsoft.Bcl.AsyncInterfaces/Microsoft.Bcl.AsyncInterfaces.sln

Lines changed: 46 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,20 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Bcl.AsyncInterfac
77
EndProject
88
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Bcl.AsyncInterfaces.Tests", "tests\Microsoft.Bcl.AsyncInterfaces.Tests.csproj", "{51D9518A-464D-4257-9567-3BDCFF24F3EE}"
99
EndProject
10-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ComInterfaceGenerator", "..\System.Runtime.InteropServices\gen\ComInterfaceGenerator\ComInterfaceGenerator.csproj", "{E30F71EB-6C3B-4052-84F7-36EAA178A45E}"
11-
EndProject
1210
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LibraryImportGenerator", "..\System.Runtime.InteropServices\gen\LibraryImportGenerator\LibraryImportGenerator.csproj", "{0AE44453-273B-4F0E-9901-A87891A73C1B}"
1311
EndProject
1412
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Interop.SourceGeneration", "..\System.Runtime.InteropServices\gen\Microsoft.Interop.SourceGeneration\Microsoft.Interop.SourceGeneration.csproj", "{D0F1936C-CF7C-4448-9F90-B9DEABE89EBB}"
1513
EndProject
14+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ILLink.CodeFixProvider", "..\..\tools\illink\src\ILLink.CodeFix\ILLink.CodeFixProvider.csproj", "{59CE8DDB-AFFD-4C6F-B09F-94DE4DD0AAEA}"
15+
EndProject
16+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ILLink.RoslynAnalyzer", "..\..\tools\illink\src\ILLink.RoslynAnalyzer\ILLink.RoslynAnalyzer.csproj", "{0225750F-4DC0-4C71-9B33-314ACA0EF682}"
17+
EndProject
18+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ILLink.Tasks", "..\..\tools\illink\src\ILLink.Tasks\ILLink.Tasks.csproj", "{272C69D8-6BED-4CE0-BD62-9F993989374E}"
19+
EndProject
20+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Mono.Linker", "..\..\tools\illink\src\linker\Mono.Linker.csproj", "{FCA0C2EA-4A82-4B3F-A9B5-E0B5200866BF}"
21+
EndProject
22+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Mono.Linker", "..\..\tools\illink\src\linker\ref\Mono.Linker.csproj", "{9957B23B-3C95-4200-A6D9-F05BAF6DC7A7}"
23+
EndProject
1624
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{6614EF7F-23FC-4809-AFF5-1ADBF1B6422C}"
1725
EndProject
1826
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ref", "ref", "{111B1B5B-A004-4C05-9A8C-E0931DADA5FB}"
@@ -21,6 +29,14 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{85204CF5-0C8
2129
EndProject
2230
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "gen", "gen", "{D6A9108E-553B-445E-A037-FA4F3140A279}"
2331
EndProject
32+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "gen", "tools\gen", "{F4939A3B-3316-4166-8AE6-34E1D0863CF5}"
33+
EndProject
34+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "tools\src", "{1AC9674D-927D-49C4-BB42-6FF353C84275}"
35+
EndProject
36+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ref", "tools\ref", "{670FB605-56DB-45F0-9B48-F8A62AFE5BD9}"
37+
EndProject
38+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tools", "tools", "{8F627B90-170F-4BCE-A626-7688EC714FB4}"
39+
EndProject
2440
Global
2541
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2642
Debug|Any CPU = Debug|Any CPU
@@ -43,10 +59,6 @@ Global
4359
{51D9518A-464D-4257-9567-3BDCFF24F3EE}.Debug|Any CPU.Build.0 = Debug|Any CPU
4460
{51D9518A-464D-4257-9567-3BDCFF24F3EE}.Release|Any CPU.ActiveCfg = Release|Any CPU
4561
{51D9518A-464D-4257-9567-3BDCFF24F3EE}.Release|Any CPU.Build.0 = Release|Any CPU
46-
{E30F71EB-6C3B-4052-84F7-36EAA178A45E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
47-
{E30F71EB-6C3B-4052-84F7-36EAA178A45E}.Debug|Any CPU.Build.0 = Debug|Any CPU
48-
{E30F71EB-6C3B-4052-84F7-36EAA178A45E}.Release|Any CPU.ActiveCfg = Release|Any CPU
49-
{E30F71EB-6C3B-4052-84F7-36EAA178A45E}.Release|Any CPU.Build.0 = Release|Any CPU
5062
{0AE44453-273B-4F0E-9901-A87891A73C1B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
5163
{0AE44453-273B-4F0E-9901-A87891A73C1B}.Debug|Any CPU.Build.0 = Debug|Any CPU
5264
{0AE44453-273B-4F0E-9901-A87891A73C1B}.Release|Any CPU.ActiveCfg = Release|Any CPU
@@ -55,6 +67,26 @@ Global
5567
{D0F1936C-CF7C-4448-9F90-B9DEABE89EBB}.Debug|Any CPU.Build.0 = Debug|Any CPU
5668
{D0F1936C-CF7C-4448-9F90-B9DEABE89EBB}.Release|Any CPU.ActiveCfg = Release|Any CPU
5769
{D0F1936C-CF7C-4448-9F90-B9DEABE89EBB}.Release|Any CPU.Build.0 = Release|Any CPU
70+
{59CE8DDB-AFFD-4C6F-B09F-94DE4DD0AAEA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
71+
{59CE8DDB-AFFD-4C6F-B09F-94DE4DD0AAEA}.Debug|Any CPU.Build.0 = Debug|Any CPU
72+
{59CE8DDB-AFFD-4C6F-B09F-94DE4DD0AAEA}.Release|Any CPU.ActiveCfg = Release|Any CPU
73+
{59CE8DDB-AFFD-4C6F-B09F-94DE4DD0AAEA}.Release|Any CPU.Build.0 = Release|Any CPU
74+
{0225750F-4DC0-4C71-9B33-314ACA0EF682}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
75+
{0225750F-4DC0-4C71-9B33-314ACA0EF682}.Debug|Any CPU.Build.0 = Debug|Any CPU
76+
{0225750F-4DC0-4C71-9B33-314ACA0EF682}.Release|Any CPU.ActiveCfg = Release|Any CPU
77+
{0225750F-4DC0-4C71-9B33-314ACA0EF682}.Release|Any CPU.Build.0 = Release|Any CPU
78+
{272C69D8-6BED-4CE0-BD62-9F993989374E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
79+
{272C69D8-6BED-4CE0-BD62-9F993989374E}.Debug|Any CPU.Build.0 = Debug|Any CPU
80+
{272C69D8-6BED-4CE0-BD62-9F993989374E}.Release|Any CPU.ActiveCfg = Release|Any CPU
81+
{272C69D8-6BED-4CE0-BD62-9F993989374E}.Release|Any CPU.Build.0 = Release|Any CPU
82+
{FCA0C2EA-4A82-4B3F-A9B5-E0B5200866BF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
83+
{FCA0C2EA-4A82-4B3F-A9B5-E0B5200866BF}.Debug|Any CPU.Build.0 = Debug|Any CPU
84+
{FCA0C2EA-4A82-4B3F-A9B5-E0B5200866BF}.Release|Any CPU.ActiveCfg = Release|Any CPU
85+
{FCA0C2EA-4A82-4B3F-A9B5-E0B5200866BF}.Release|Any CPU.Build.0 = Release|Any CPU
86+
{9957B23B-3C95-4200-A6D9-F05BAF6DC7A7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
87+
{9957B23B-3C95-4200-A6D9-F05BAF6DC7A7}.Debug|Any CPU.Build.0 = Debug|Any CPU
88+
{9957B23B-3C95-4200-A6D9-F05BAF6DC7A7}.Release|Any CPU.ActiveCfg = Release|Any CPU
89+
{9957B23B-3C95-4200-A6D9-F05BAF6DC7A7}.Release|Any CPU.Build.0 = Release|Any CPU
5890
EndGlobalSection
5991
GlobalSection(SolutionProperties) = preSolution
6092
HideSolutionNode = FALSE
@@ -64,9 +96,16 @@ Global
6496
{51D9518A-464D-4257-9567-3BDCFF24F3EE} = {6614EF7F-23FC-4809-AFF5-1ADBF1B6422C}
6597
{73E7C25C-AEBC-4F4F-B8D1-0CC49D5B92DE} = {111B1B5B-A004-4C05-9A8C-E0931DADA5FB}
6698
{4D4BED71-8904-4A74-88CD-63D002CCACD0} = {85204CF5-0C88-4BBB-9E70-D8CCED82ED3D}
67-
{E30F71EB-6C3B-4052-84F7-36EAA178A45E} = {D6A9108E-553B-445E-A037-FA4F3140A279}
6899
{0AE44453-273B-4F0E-9901-A87891A73C1B} = {D6A9108E-553B-445E-A037-FA4F3140A279}
69100
{D0F1936C-CF7C-4448-9F90-B9DEABE89EBB} = {D6A9108E-553B-445E-A037-FA4F3140A279}
101+
{59CE8DDB-AFFD-4C6F-B09F-94DE4DD0AAEA} = {F4939A3B-3316-4166-8AE6-34E1D0863CF5}
102+
{0225750F-4DC0-4C71-9B33-314ACA0EF682} = {F4939A3B-3316-4166-8AE6-34E1D0863CF5}
103+
{F4939A3B-3316-4166-8AE6-34E1D0863CF5} = {8F627B90-170F-4BCE-A626-7688EC714FB4}
104+
{272C69D8-6BED-4CE0-BD62-9F993989374E} = {1AC9674D-927D-49C4-BB42-6FF353C84275}
105+
{FCA0C2EA-4A82-4B3F-A9B5-E0B5200866BF} = {1AC9674D-927D-49C4-BB42-6FF353C84275}
106+
{1AC9674D-927D-49C4-BB42-6FF353C84275} = {8F627B90-170F-4BCE-A626-7688EC714FB4}
107+
{9957B23B-3C95-4200-A6D9-F05BAF6DC7A7} = {670FB605-56DB-45F0-9B48-F8A62AFE5BD9}
108+
{670FB605-56DB-45F0-9B48-F8A62AFE5BD9} = {8F627B90-170F-4BCE-A626-7688EC714FB4}
70109
EndGlobalSection
71110
GlobalSection(ExtensibilityGlobals) = postSolution
72111
SolutionGuid = {A835CEDB-E9E2-49EE-8499-BD7FDD984E53}

src/libraries/Microsoft.Bcl.Cryptography/Microsoft.Bcl.Cryptography.sln

Lines changed: 46 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,20 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Bcl.Cryptography"
77
EndProject
88
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Bcl.Cryptography.Tests", "tests\Microsoft.Bcl.Cryptography.Tests.csproj", "{E66D17AB-BBAF-4F2B-AC9C-8E89BDCC6191}"
99
EndProject
10-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ComInterfaceGenerator", "..\System.Runtime.InteropServices\gen\ComInterfaceGenerator\ComInterfaceGenerator.csproj", "{B61AD28A-1FB4-478D-B75D-77852F65BBA4}"
11-
EndProject
1210
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LibraryImportGenerator", "..\System.Runtime.InteropServices\gen\LibraryImportGenerator\LibraryImportGenerator.csproj", "{E9271403-BEF5-46E9-B68B-16EF69AA7149}"
1311
EndProject
1412
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Interop.SourceGeneration", "..\System.Runtime.InteropServices\gen\Microsoft.Interop.SourceGeneration\Microsoft.Interop.SourceGeneration.csproj", "{A4C2BDDC-1AFB-45A8-9E9B-4AD7396A4DF2}"
1513
EndProject
14+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ILLink.CodeFixProvider", "..\..\tools\illink\src\ILLink.CodeFix\ILLink.CodeFixProvider.csproj", "{777AF5DE-3EB3-4E62-A0D8-CA10D77B5343}"
15+
EndProject
16+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ILLink.RoslynAnalyzer", "..\..\tools\illink\src\ILLink.RoslynAnalyzer\ILLink.RoslynAnalyzer.csproj", "{94384409-052F-4697-B235-8990C851B6A4}"
17+
EndProject
18+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ILLink.Tasks", "..\..\tools\illink\src\ILLink.Tasks\ILLink.Tasks.csproj", "{A243E975-A17E-4DA8-91AC-7FCB52EAB921}"
19+
EndProject
20+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Mono.Linker", "..\..\tools\illink\src\linker\Mono.Linker.csproj", "{7C971319-753D-4D49-B242-994260ABD9AF}"
21+
EndProject
22+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Mono.Linker", "..\..\tools\illink\src\linker\ref\Mono.Linker.csproj", "{E4477F0C-A13A-4C1A-9A70-0A287E09E9EA}"
23+
EndProject
1624
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{8C3BD4AD-1A56-4204-9826-F8B74251D19F}"
1725
EndProject
1826
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ref", "ref", "{7E9F6DE1-771B-4E25-A603-EC43D0291C8B}"
@@ -21,6 +29,14 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{98708A22-726
2129
EndProject
2230
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "gen", "gen", "{34897637-11A1-48A4-AF1F-E11463A61D0B}"
2331
EndProject
32+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "gen", "tools\gen", "{568C437D-072B-48BA-BBB4-20F39E2ADA15}"
33+
EndProject
34+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "tools\src", "{AEDD1BBB-88D7-4CC1-9262-D94341DAD308}"
35+
EndProject
36+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ref", "tools\ref", "{3AFC9F72-C997-4066-86FD-EDA22F432C73}"
37+
EndProject
38+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tools", "tools", "{98BFC458-097E-4C6C-BAE8-03199531D531}"
39+
EndProject
2440
Global
2541
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2642
Debug|Any CPU = Debug|Any CPU
@@ -43,10 +59,6 @@ Global
4359
{E66D17AB-BBAF-4F2B-AC9C-8E89BDCC6191}.Debug|Any CPU.Build.0 = Debug|Any CPU
4460
{E66D17AB-BBAF-4F2B-AC9C-8E89BDCC6191}.Release|Any CPU.ActiveCfg = Release|Any CPU
4561
{E66D17AB-BBAF-4F2B-AC9C-8E89BDCC6191}.Release|Any CPU.Build.0 = Release|Any CPU
46-
{B61AD28A-1FB4-478D-B75D-77852F65BBA4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
47-
{B61AD28A-1FB4-478D-B75D-77852F65BBA4}.Debug|Any CPU.Build.0 = Debug|Any CPU
48-
{B61AD28A-1FB4-478D-B75D-77852F65BBA4}.Release|Any CPU.ActiveCfg = Release|Any CPU
49-
{B61AD28A-1FB4-478D-B75D-77852F65BBA4}.Release|Any CPU.Build.0 = Release|Any CPU
5062
{E9271403-BEF5-46E9-B68B-16EF69AA7149}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
5163
{E9271403-BEF5-46E9-B68B-16EF69AA7149}.Debug|Any CPU.Build.0 = Debug|Any CPU
5264
{E9271403-BEF5-46E9-B68B-16EF69AA7149}.Release|Any CPU.ActiveCfg = Release|Any CPU
@@ -55,6 +67,26 @@ Global
5567
{A4C2BDDC-1AFB-45A8-9E9B-4AD7396A4DF2}.Debug|Any CPU.Build.0 = Debug|Any CPU
5668
{A4C2BDDC-1AFB-45A8-9E9B-4AD7396A4DF2}.Release|Any CPU.ActiveCfg = Release|Any CPU
5769
{A4C2BDDC-1AFB-45A8-9E9B-4AD7396A4DF2}.Release|Any CPU.Build.0 = Release|Any CPU
70+
{777AF5DE-3EB3-4E62-A0D8-CA10D77B5343}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
71+
{777AF5DE-3EB3-4E62-A0D8-CA10D77B5343}.Debug|Any CPU.Build.0 = Debug|Any CPU
72+
{777AF5DE-3EB3-4E62-A0D8-CA10D77B5343}.Release|Any CPU.ActiveCfg = Release|Any CPU
73+
{777AF5DE-3EB3-4E62-A0D8-CA10D77B5343}.Release|Any CPU.Build.0 = Release|Any CPU
74+
{94384409-052F-4697-B235-8990C851B6A4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
75+
{94384409-052F-4697-B235-8990C851B6A4}.Debug|Any CPU.Build.0 = Debug|Any CPU
76+
{94384409-052F-4697-B235-8990C851B6A4}.Release|Any CPU.ActiveCfg = Release|Any CPU
77+
{94384409-052F-4697-B235-8990C851B6A4}.Release|Any CPU.Build.0 = Release|Any CPU
78+
{A243E975-A17E-4DA8-91AC-7FCB52EAB921}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
79+
{A243E975-A17E-4DA8-91AC-7FCB52EAB921}.Debug|Any CPU.Build.0 = Debug|Any CPU
80+
{A243E975-A17E-4DA8-91AC-7FCB52EAB921}.Release|Any CPU.ActiveCfg = Release|Any CPU
81+
{A243E975-A17E-4DA8-91AC-7FCB52EAB921}.Release|Any CPU.Build.0 = Release|Any CPU
82+
{7C971319-753D-4D49-B242-994260ABD9AF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
83+
{7C971319-753D-4D49-B242-994260ABD9AF}.Debug|Any CPU.Build.0 = Debug|Any CPU
84+
{7C971319-753D-4D49-B242-994260ABD9AF}.Release|Any CPU.ActiveCfg = Release|Any CPU
85+
{7C971319-753D-4D49-B242-994260ABD9AF}.Release|Any CPU.Build.0 = Release|Any CPU
86+
{E4477F0C-A13A-4C1A-9A70-0A287E09E9EA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
87+
{E4477F0C-A13A-4C1A-9A70-0A287E09E9EA}.Debug|Any CPU.Build.0 = Debug|Any CPU
88+
{E4477F0C-A13A-4C1A-9A70-0A287E09E9EA}.Release|Any CPU.ActiveCfg = Release|Any CPU
89+
{E4477F0C-A13A-4C1A-9A70-0A287E09E9EA}.Release|Any CPU.Build.0 = Release|Any CPU
5890
EndGlobalSection
5991
GlobalSection(SolutionProperties) = preSolution
6092
HideSolutionNode = FALSE
@@ -64,9 +96,16 @@ Global
6496
{E66D17AB-BBAF-4F2B-AC9C-8E89BDCC6191} = {8C3BD4AD-1A56-4204-9826-F8B74251D19F}
6597
{63655B2E-6A06-4E48-9F01-D0B910063165} = {7E9F6DE1-771B-4E25-A603-EC43D0291C8B}
6698
{B0716D7E-B824-4866-A1ED-DF31BA2970B9} = {98708A22-7268-4EDB-AE37-70AA958A772A}
67-
{B61AD28A-1FB4-478D-B75D-77852F65BBA4} = {34897637-11A1-48A4-AF1F-E11463A61D0B}
6899
{E9271403-BEF5-46E9-B68B-16EF69AA7149} = {34897637-11A1-48A4-AF1F-E11463A61D0B}
69100
{A4C2BDDC-1AFB-45A8-9E9B-4AD7396A4DF2} = {34897637-11A1-48A4-AF1F-E11463A61D0B}
101+
{777AF5DE-3EB3-4E62-A0D8-CA10D77B5343} = {568C437D-072B-48BA-BBB4-20F39E2ADA15}
102+
{94384409-052F-4697-B235-8990C851B6A4} = {568C437D-072B-48BA-BBB4-20F39E2ADA15}
103+
{568C437D-072B-48BA-BBB4-20F39E2ADA15} = {98BFC458-097E-4C6C-BAE8-03199531D531}
104+
{A243E975-A17E-4DA8-91AC-7FCB52EAB921} = {AEDD1BBB-88D7-4CC1-9262-D94341DAD308}
105+
{7C971319-753D-4D49-B242-994260ABD9AF} = {AEDD1BBB-88D7-4CC1-9262-D94341DAD308}
106+
{AEDD1BBB-88D7-4CC1-9262-D94341DAD308} = {98BFC458-097E-4C6C-BAE8-03199531D531}
107+
{E4477F0C-A13A-4C1A-9A70-0A287E09E9EA} = {3AFC9F72-C997-4066-86FD-EDA22F432C73}
108+
{3AFC9F72-C997-4066-86FD-EDA22F432C73} = {98BFC458-097E-4C6C-BAE8-03199531D531}
70109
EndGlobalSection
71110
GlobalSection(ExtensibilityGlobals) = postSolution
72111
SolutionGuid = {EAA35B12-9858-4428-8510-F09B19933FB9}

0 commit comments

Comments
 (0)