Skip to content

Commit

Permalink
Update solution files (dotnet#92209)
Browse files Browse the repository at this point in the history
* Update infra to include tools P2Ps in a tools folder

* Update solution files in reaction to illink P2P changes
  • Loading branch information
ViktorHofer authored Sep 19, 2023
1 parent 19445f0 commit 963954a
Show file tree
Hide file tree
Showing 203 changed files with 20,356 additions and 1,231 deletions.
1 change: 1 addition & 0 deletions Directory.Build.targets
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
<Import Project="$(RepositoryEngineeringDir)generatorProjects.targets" Condition="'$(IsGeneratorProject)' == 'true'" />
<Import Project="$(RepositoryEngineeringDir)resolveContract.targets" Condition="'$(IsSourceProject)' == 'true'" />
<Import Project="$(RepositoryEngineeringDir)packaging.targets" Condition="'$(IsPackable)' == 'true' and '$(MSBuildProjectExtension)' != '.pkgproj'" />
<Import Project="$(RepositoryEngineeringDir)slngen.targets" Condition="'$(IsSlnGen)' == 'true'" />

<!--
When .NET gets built from source, make the SDK aware there are bootstrap packages
Expand Down
10 changes: 6 additions & 4 deletions eng/slngen.targets
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
<Project>

<PropertyGroup>
<SlnGenSolutionFolder Condition="'$(IsGeneratorProject)' == 'true'">gen</SlnGenSolutionFolder>
<SlnGenSolutionFolder Condition="'$(IsReferenceAssemblyProject)' == 'true'">ref</SlnGenSolutionFolder>
<SlnGenSolutionFolder Condition="'$(IsTestProject)' == 'true' or '$(IsTrimmingTestProject)' == 'true' or '$(IsTestSupportProject)' == 'true'">tests</SlnGenSolutionFolder>
<SlnGenSolutionFolder Condition="'$(SlnGenSolutionFolder)' == ''">src</SlnGenSolutionFolder>
<SlnGenSolutionFolder Condition="'$(IsGeneratorProject)' == 'true'">$(SlnGenSolutionFolder)gen</SlnGenSolutionFolder>
<SlnGenSolutionFolder Condition="'$(IsReferenceAssemblyProject)' == 'true'">$(SlnGenSolutionFolder)ref</SlnGenSolutionFolder>
<SlnGenSolutionFolder Condition="'$(IsTestProject)' == 'true' or '$(IsTrimmingTestProject)' == 'true' or '$(IsTestSupportProject)' == 'true'">$(SlnGenSolutionFolder)tests</SlnGenSolutionFolder>
<SlnGenSolutionFolder Condition="'$(IsSourceProject)' == 'true' or '$(SlnGenSolutionFolder)' == ''">$(SlnGenSolutionFolder)src</SlnGenSolutionFolder>
</PropertyGroup>

</Project>
1 change: 0 additions & 1 deletion src/libraries/Directory.Build.targets
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@
<Import Project="$(RepositoryEngineeringDir)testing\runtimeConfiguration.targets" />
<Import Project="$(RepositoryEngineeringDir)testing\runsettings.targets" Condition="'$(EnableRunSettingsSupport)' == 'true'" />
<Import Project="$(RepositoryEngineeringDir)testing\coverage.targets" Condition="'$(EnableRunSettingsSupport)' == 'true' or '$(EnableCoverageSupport)' == 'true'" />
<Import Project="$(RepositoryEngineeringDir)slngen.targets" Condition="'$(IsSlnGen)' == 'true'" />

<Import Project="$(RepositoryEngineeringDir)illink.targets" Condition="'$(IsSourceProject)' == 'true' or '$(ExplicitlyImportCustomILLinkTargets)' == 'true'" />
<Import Project="$(RepositoryEngineeringDir)AvoidRestoreCycleOnSelfReference.targets" Condition="'$(AvoidRestoreCycleOnSelfReference)' == 'true'" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,20 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Bcl.AsyncInterfac
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Bcl.AsyncInterfaces.Tests", "tests\Microsoft.Bcl.AsyncInterfaces.Tests.csproj", "{51D9518A-464D-4257-9567-3BDCFF24F3EE}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ComInterfaceGenerator", "..\System.Runtime.InteropServices\gen\ComInterfaceGenerator\ComInterfaceGenerator.csproj", "{E30F71EB-6C3B-4052-84F7-36EAA178A45E}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LibraryImportGenerator", "..\System.Runtime.InteropServices\gen\LibraryImportGenerator\LibraryImportGenerator.csproj", "{0AE44453-273B-4F0E-9901-A87891A73C1B}"
EndProject
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}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ILLink.CodeFixProvider", "..\..\tools\illink\src\ILLink.CodeFix\ILLink.CodeFixProvider.csproj", "{59CE8DDB-AFFD-4C6F-B09F-94DE4DD0AAEA}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ILLink.RoslynAnalyzer", "..\..\tools\illink\src\ILLink.RoslynAnalyzer\ILLink.RoslynAnalyzer.csproj", "{0225750F-4DC0-4C71-9B33-314ACA0EF682}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ILLink.Tasks", "..\..\tools\illink\src\ILLink.Tasks\ILLink.Tasks.csproj", "{272C69D8-6BED-4CE0-BD62-9F993989374E}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Mono.Linker", "..\..\tools\illink\src\linker\Mono.Linker.csproj", "{FCA0C2EA-4A82-4B3F-A9B5-E0B5200866BF}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Mono.Linker", "..\..\tools\illink\src\linker\ref\Mono.Linker.csproj", "{9957B23B-3C95-4200-A6D9-F05BAF6DC7A7}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{6614EF7F-23FC-4809-AFF5-1ADBF1B6422C}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ref", "ref", "{111B1B5B-A004-4C05-9A8C-E0931DADA5FB}"
Expand All @@ -21,6 +29,14 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{85204CF5-0C8
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "gen", "gen", "{D6A9108E-553B-445E-A037-FA4F3140A279}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "gen", "tools\gen", "{F4939A3B-3316-4166-8AE6-34E1D0863CF5}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "tools\src", "{1AC9674D-927D-49C4-BB42-6FF353C84275}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ref", "tools\ref", "{670FB605-56DB-45F0-9B48-F8A62AFE5BD9}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tools", "tools", "{8F627B90-170F-4BCE-A626-7688EC714FB4}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -43,10 +59,6 @@ Global
{51D9518A-464D-4257-9567-3BDCFF24F3EE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{51D9518A-464D-4257-9567-3BDCFF24F3EE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{51D9518A-464D-4257-9567-3BDCFF24F3EE}.Release|Any CPU.Build.0 = Release|Any CPU
{E30F71EB-6C3B-4052-84F7-36EAA178A45E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E30F71EB-6C3B-4052-84F7-36EAA178A45E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E30F71EB-6C3B-4052-84F7-36EAA178A45E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E30F71EB-6C3B-4052-84F7-36EAA178A45E}.Release|Any CPU.Build.0 = Release|Any CPU
{0AE44453-273B-4F0E-9901-A87891A73C1B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0AE44453-273B-4F0E-9901-A87891A73C1B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0AE44453-273B-4F0E-9901-A87891A73C1B}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand All @@ -55,6 +67,26 @@ Global
{D0F1936C-CF7C-4448-9F90-B9DEABE89EBB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D0F1936C-CF7C-4448-9F90-B9DEABE89EBB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D0F1936C-CF7C-4448-9F90-B9DEABE89EBB}.Release|Any CPU.Build.0 = Release|Any CPU
{59CE8DDB-AFFD-4C6F-B09F-94DE4DD0AAEA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{59CE8DDB-AFFD-4C6F-B09F-94DE4DD0AAEA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{59CE8DDB-AFFD-4C6F-B09F-94DE4DD0AAEA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{59CE8DDB-AFFD-4C6F-B09F-94DE4DD0AAEA}.Release|Any CPU.Build.0 = Release|Any CPU
{0225750F-4DC0-4C71-9B33-314ACA0EF682}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0225750F-4DC0-4C71-9B33-314ACA0EF682}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0225750F-4DC0-4C71-9B33-314ACA0EF682}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0225750F-4DC0-4C71-9B33-314ACA0EF682}.Release|Any CPU.Build.0 = Release|Any CPU
{272C69D8-6BED-4CE0-BD62-9F993989374E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{272C69D8-6BED-4CE0-BD62-9F993989374E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{272C69D8-6BED-4CE0-BD62-9F993989374E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{272C69D8-6BED-4CE0-BD62-9F993989374E}.Release|Any CPU.Build.0 = Release|Any CPU
{FCA0C2EA-4A82-4B3F-A9B5-E0B5200866BF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FCA0C2EA-4A82-4B3F-A9B5-E0B5200866BF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FCA0C2EA-4A82-4B3F-A9B5-E0B5200866BF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FCA0C2EA-4A82-4B3F-A9B5-E0B5200866BF}.Release|Any CPU.Build.0 = Release|Any CPU
{9957B23B-3C95-4200-A6D9-F05BAF6DC7A7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9957B23B-3C95-4200-A6D9-F05BAF6DC7A7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9957B23B-3C95-4200-A6D9-F05BAF6DC7A7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9957B23B-3C95-4200-A6D9-F05BAF6DC7A7}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand All @@ -64,9 +96,16 @@ Global
{51D9518A-464D-4257-9567-3BDCFF24F3EE} = {6614EF7F-23FC-4809-AFF5-1ADBF1B6422C}
{73E7C25C-AEBC-4F4F-B8D1-0CC49D5B92DE} = {111B1B5B-A004-4C05-9A8C-E0931DADA5FB}
{4D4BED71-8904-4A74-88CD-63D002CCACD0} = {85204CF5-0C88-4BBB-9E70-D8CCED82ED3D}
{E30F71EB-6C3B-4052-84F7-36EAA178A45E} = {D6A9108E-553B-445E-A037-FA4F3140A279}
{0AE44453-273B-4F0E-9901-A87891A73C1B} = {D6A9108E-553B-445E-A037-FA4F3140A279}
{D0F1936C-CF7C-4448-9F90-B9DEABE89EBB} = {D6A9108E-553B-445E-A037-FA4F3140A279}
{59CE8DDB-AFFD-4C6F-B09F-94DE4DD0AAEA} = {F4939A3B-3316-4166-8AE6-34E1D0863CF5}
{0225750F-4DC0-4C71-9B33-314ACA0EF682} = {F4939A3B-3316-4166-8AE6-34E1D0863CF5}
{F4939A3B-3316-4166-8AE6-34E1D0863CF5} = {8F627B90-170F-4BCE-A626-7688EC714FB4}
{272C69D8-6BED-4CE0-BD62-9F993989374E} = {1AC9674D-927D-49C4-BB42-6FF353C84275}
{FCA0C2EA-4A82-4B3F-A9B5-E0B5200866BF} = {1AC9674D-927D-49C4-BB42-6FF353C84275}
{1AC9674D-927D-49C4-BB42-6FF353C84275} = {8F627B90-170F-4BCE-A626-7688EC714FB4}
{9957B23B-3C95-4200-A6D9-F05BAF6DC7A7} = {670FB605-56DB-45F0-9B48-F8A62AFE5BD9}
{670FB605-56DB-45F0-9B48-F8A62AFE5BD9} = {8F627B90-170F-4BCE-A626-7688EC714FB4}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {A835CEDB-E9E2-49EE-8499-BD7FDD984E53}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,20 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Bcl.Cryptography"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Bcl.Cryptography.Tests", "tests\Microsoft.Bcl.Cryptography.Tests.csproj", "{E66D17AB-BBAF-4F2B-AC9C-8E89BDCC6191}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ComInterfaceGenerator", "..\System.Runtime.InteropServices\gen\ComInterfaceGenerator\ComInterfaceGenerator.csproj", "{B61AD28A-1FB4-478D-B75D-77852F65BBA4}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LibraryImportGenerator", "..\System.Runtime.InteropServices\gen\LibraryImportGenerator\LibraryImportGenerator.csproj", "{E9271403-BEF5-46E9-B68B-16EF69AA7149}"
EndProject
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}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ILLink.CodeFixProvider", "..\..\tools\illink\src\ILLink.CodeFix\ILLink.CodeFixProvider.csproj", "{777AF5DE-3EB3-4E62-A0D8-CA10D77B5343}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ILLink.RoslynAnalyzer", "..\..\tools\illink\src\ILLink.RoslynAnalyzer\ILLink.RoslynAnalyzer.csproj", "{94384409-052F-4697-B235-8990C851B6A4}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ILLink.Tasks", "..\..\tools\illink\src\ILLink.Tasks\ILLink.Tasks.csproj", "{A243E975-A17E-4DA8-91AC-7FCB52EAB921}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Mono.Linker", "..\..\tools\illink\src\linker\Mono.Linker.csproj", "{7C971319-753D-4D49-B242-994260ABD9AF}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Mono.Linker", "..\..\tools\illink\src\linker\ref\Mono.Linker.csproj", "{E4477F0C-A13A-4C1A-9A70-0A287E09E9EA}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{8C3BD4AD-1A56-4204-9826-F8B74251D19F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ref", "ref", "{7E9F6DE1-771B-4E25-A603-EC43D0291C8B}"
Expand All @@ -21,6 +29,14 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{98708A22-726
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "gen", "gen", "{34897637-11A1-48A4-AF1F-E11463A61D0B}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "gen", "tools\gen", "{568C437D-072B-48BA-BBB4-20F39E2ADA15}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "tools\src", "{AEDD1BBB-88D7-4CC1-9262-D94341DAD308}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ref", "tools\ref", "{3AFC9F72-C997-4066-86FD-EDA22F432C73}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tools", "tools", "{98BFC458-097E-4C6C-BAE8-03199531D531}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -43,10 +59,6 @@ Global
{E66D17AB-BBAF-4F2B-AC9C-8E89BDCC6191}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E66D17AB-BBAF-4F2B-AC9C-8E89BDCC6191}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E66D17AB-BBAF-4F2B-AC9C-8E89BDCC6191}.Release|Any CPU.Build.0 = Release|Any CPU
{B61AD28A-1FB4-478D-B75D-77852F65BBA4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B61AD28A-1FB4-478D-B75D-77852F65BBA4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B61AD28A-1FB4-478D-B75D-77852F65BBA4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B61AD28A-1FB4-478D-B75D-77852F65BBA4}.Release|Any CPU.Build.0 = Release|Any CPU
{E9271403-BEF5-46E9-B68B-16EF69AA7149}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E9271403-BEF5-46E9-B68B-16EF69AA7149}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E9271403-BEF5-46E9-B68B-16EF69AA7149}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand All @@ -55,6 +67,26 @@ Global
{A4C2BDDC-1AFB-45A8-9E9B-4AD7396A4DF2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A4C2BDDC-1AFB-45A8-9E9B-4AD7396A4DF2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A4C2BDDC-1AFB-45A8-9E9B-4AD7396A4DF2}.Release|Any CPU.Build.0 = Release|Any CPU
{777AF5DE-3EB3-4E62-A0D8-CA10D77B5343}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{777AF5DE-3EB3-4E62-A0D8-CA10D77B5343}.Debug|Any CPU.Build.0 = Debug|Any CPU
{777AF5DE-3EB3-4E62-A0D8-CA10D77B5343}.Release|Any CPU.ActiveCfg = Release|Any CPU
{777AF5DE-3EB3-4E62-A0D8-CA10D77B5343}.Release|Any CPU.Build.0 = Release|Any CPU
{94384409-052F-4697-B235-8990C851B6A4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{94384409-052F-4697-B235-8990C851B6A4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{94384409-052F-4697-B235-8990C851B6A4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{94384409-052F-4697-B235-8990C851B6A4}.Release|Any CPU.Build.0 = Release|Any CPU
{A243E975-A17E-4DA8-91AC-7FCB52EAB921}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A243E975-A17E-4DA8-91AC-7FCB52EAB921}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A243E975-A17E-4DA8-91AC-7FCB52EAB921}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A243E975-A17E-4DA8-91AC-7FCB52EAB921}.Release|Any CPU.Build.0 = Release|Any CPU
{7C971319-753D-4D49-B242-994260ABD9AF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7C971319-753D-4D49-B242-994260ABD9AF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7C971319-753D-4D49-B242-994260ABD9AF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7C971319-753D-4D49-B242-994260ABD9AF}.Release|Any CPU.Build.0 = Release|Any CPU
{E4477F0C-A13A-4C1A-9A70-0A287E09E9EA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E4477F0C-A13A-4C1A-9A70-0A287E09E9EA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E4477F0C-A13A-4C1A-9A70-0A287E09E9EA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E4477F0C-A13A-4C1A-9A70-0A287E09E9EA}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand All @@ -64,9 +96,16 @@ Global
{E66D17AB-BBAF-4F2B-AC9C-8E89BDCC6191} = {8C3BD4AD-1A56-4204-9826-F8B74251D19F}
{63655B2E-6A06-4E48-9F01-D0B910063165} = {7E9F6DE1-771B-4E25-A603-EC43D0291C8B}
{B0716D7E-B824-4866-A1ED-DF31BA2970B9} = {98708A22-7268-4EDB-AE37-70AA958A772A}
{B61AD28A-1FB4-478D-B75D-77852F65BBA4} = {34897637-11A1-48A4-AF1F-E11463A61D0B}
{E9271403-BEF5-46E9-B68B-16EF69AA7149} = {34897637-11A1-48A4-AF1F-E11463A61D0B}
{A4C2BDDC-1AFB-45A8-9E9B-4AD7396A4DF2} = {34897637-11A1-48A4-AF1F-E11463A61D0B}
{777AF5DE-3EB3-4E62-A0D8-CA10D77B5343} = {568C437D-072B-48BA-BBB4-20F39E2ADA15}
{94384409-052F-4697-B235-8990C851B6A4} = {568C437D-072B-48BA-BBB4-20F39E2ADA15}
{568C437D-072B-48BA-BBB4-20F39E2ADA15} = {98BFC458-097E-4C6C-BAE8-03199531D531}
{A243E975-A17E-4DA8-91AC-7FCB52EAB921} = {AEDD1BBB-88D7-4CC1-9262-D94341DAD308}
{7C971319-753D-4D49-B242-994260ABD9AF} = {AEDD1BBB-88D7-4CC1-9262-D94341DAD308}
{AEDD1BBB-88D7-4CC1-9262-D94341DAD308} = {98BFC458-097E-4C6C-BAE8-03199531D531}
{E4477F0C-A13A-4C1A-9A70-0A287E09E9EA} = {3AFC9F72-C997-4066-86FD-EDA22F432C73}
{3AFC9F72-C997-4066-86FD-EDA22F432C73} = {98BFC458-097E-4C6C-BAE8-03199531D531}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {EAA35B12-9858-4428-8510-F09B19933FB9}
Expand Down
Loading

0 comments on commit 963954a

Please sign in to comment.