Fixed unit tests for BITS Cabinet and ShlwApi pinvoke libs

pull/180/head
dahall 2020-09-19 16:25:49 -06:00
parent a93ad71aab
commit 87ce74835c
7 changed files with 132 additions and 27 deletions

View File

@ -4,12 +4,13 @@
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{7D799541-C923-4593-A8C0-ABFA4F44AD3F}</ProjectGuid>
<ProjectGuid>{95E98514-A4D0-4ACD-8BE0-35D7BD185C71}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<AssemblyName>UnitTest.PInvoke.BITS</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
@ -19,6 +20,8 @@
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x64</PlatformTarget>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
@ -27,10 +30,30 @@
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Core\Vanara.Core.csproj">
<Project>{241f73ee-9298-45c9-b869-a045dff94c03}</Project>
<Name>Vanara.Core</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\PInvoke\BITS\Vanara.PInvoke.BITS.csproj">
<Project>{ef53ed51-c141-4525-a6b7-41109ee5f416}</Project>
<Name>Vanara.PInvoke.BITS</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\PInvoke\Shared\Vanara.PInvoke.Shared.csproj">
<Project>{a5e519e9-feba-4fe3-93a5-b8269bef72f4}</Project>
<Name>Vanara.PInvoke.Shared</Name>
</ProjectReference>
<ProjectReference Include="..\..\CSharpRunner\Shared.csproj">
<Project>{a96cff10-0967-429a-8700-4a86c97c5603}</Project>
<Name>Shared</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="NUnit">
<Version>3.12.0</Version>

View File

@ -9,6 +9,16 @@ namespace Vanara.PInvoke.Tests
[TestFixture]
public class BITSTests
{
[OneTimeSetUp]
public void _Setup()
{
}
[OneTimeTearDown]
public void _TearDown()
{
}
[Test]
public void Test()
{

View File

@ -4,12 +4,13 @@
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{7A7D9AC3-B371-478B-95B3-B538CB903231}</ProjectGuid>
<ProjectGuid>{CD8A5176-6EEC-4739-9748-A45D3FDECFA0}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<AssemblyName>UnitTest.PInvoke.Cabinet</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
@ -19,6 +20,8 @@
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x64</PlatformTarget>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
@ -27,10 +30,30 @@
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Core\Vanara.Core.csproj">
<Project>{241f73ee-9298-45c9-b869-a045dff94c03}</Project>
<Name>Vanara.Core</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\PInvoke\Cabinet\Vanara.PInvoke.Cabinet.csproj">
<Project>{f1bdaea9-e2f0-4e9c-844e-0fb958552ec7}</Project>
<Name>Vanara.PInvoke.Cabinet</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\PInvoke\Shared\Vanara.PInvoke.Shared.csproj">
<Project>{a5e519e9-feba-4fe3-93a5-b8269bef72f4}</Project>
<Name>Vanara.PInvoke.Shared</Name>
</ProjectReference>
<ProjectReference Include="..\..\CSharpRunner\Shared.csproj">
<Project>{a96cff10-0967-429a-8700-4a86c97c5603}</Project>
<Name>Shared</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="NUnit">
<Version>3.12.0</Version>

View File

@ -9,6 +9,16 @@ namespace Vanara.PInvoke.Tests
[TestFixture]
public class CabinetTests
{
[OneTimeSetUp]
public void _Setup()
{
}
[OneTimeTearDown]
public void _TearDown()
{
}
[Test]
public void Test()
{

View File

@ -4,12 +4,13 @@
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{AF867D8E-1C94-4D4C-962D-D155581B0C3B}</ProjectGuid>
<ProjectGuid>{80E10D65-5B7C-4BC8-8000-2B5BC9A21874}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<AssemblyName>UnitTest.PInvoke.ShlwApi</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
@ -19,6 +20,8 @@
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x64</PlatformTarget>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
@ -27,10 +30,30 @@
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Core\Vanara.Core.csproj">
<Project>{241f73ee-9298-45c9-b869-a045dff94c03}</Project>
<Name>Vanara.Core</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\PInvoke\Shared\Vanara.PInvoke.Shared.csproj">
<Project>{a5e519e9-feba-4fe3-93a5-b8269bef72f4}</Project>
<Name>Vanara.PInvoke.Shared</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\PInvoke\ShlwApi\Vanara.PInvoke.ShlwApi.csproj">
<Project>{30fd6779-6549-449e-880a-695815eb89b0}</Project>
<Name>Vanara.PInvoke.ShlwApi</Name>
</ProjectReference>
<ProjectReference Include="..\..\CSharpRunner\Shared.csproj">
<Project>{a96cff10-0967-429a-8700-4a86c97c5603}</Project>
<Name>Shared</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="NUnit">
<Version>3.12.0</Version>

View File

@ -9,6 +9,16 @@ namespace Vanara.PInvoke.Tests
[TestFixture]
public class ShlwApiTests
{
[OneTimeSetUp]
public void _Setup()
{
}
[OneTimeTearDown]
public void _TearDown()
{
}
[Test]
public void Test()
{

View File

@ -99,10 +99,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "PInvoke", "PInvoke", "{385C
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AclUI", "UnitTests\PInvoke\AclUI\AclUI.csproj", "{81A79BCD-C322-4742-842E-F70344FAD01D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BITS", "UnitTests\PInvoke\BITS\BITS.csproj", "{7D799541-C923-4593-A8C0-ABFA4F44AD3F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Cabinet", "UnitTests\PInvoke\Cabinet\Cabinet.csproj", "{7A7D9AC3-B371-478B-95B3-B538CB903231}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ComCtl32", "UnitTests\PInvoke\ComCtl32\ComCtl32.csproj", "{FC54780C-E523-450E-BC74-1F900A652A2C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CredUI", "UnitTests\PInvoke\CredUI\CredUI.csproj", "{D26F23F2-35E8-4253-BCEF-56F113C93B02}"
@ -137,8 +133,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Shared", "UnitTests\PInvoke
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Shell32", "UnitTests\PInvoke\Shell32\Shell32.csproj", "{40E5CA4E-527F-4F79-875D-2342D1136FDD}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ShlwApi", "UnitTests\PInvoke\ShlwApi\ShlwApi.csproj", "{AF867D8E-1C94-4D4C-962D-D155581B0C3B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TaskSchd", "UnitTests\PInvoke\TaskSchd\TaskSchd.csproj", "{85157400-A6FF-41E7-B650-4952ECBC28AD}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "User32", "UnitTests\PInvoke\User32\User32.csproj", "{60A80A72-67BD-4CC2-95DA-0F6D3553A221}"
@ -229,7 +223,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Vanara.PInvoke.Graphics", "
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Graphics", "UnitTests\PInvoke\Graphics\Graphics.csproj", "{AD003766-998F-4969-8632-A9CD0E3A21F8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CoreConsoleApp", "UnitTests\CoreConsoleApp\CoreConsoleApp.csproj", "{3E14800D-4E2D-43A0-8C15-B64C6F4469CA}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CoreConsoleApp", "UnitTests\CoreConsoleApp\CoreConsoleApp.csproj", "{3E14800D-4E2D-43A0-8C15-B64C6F4469CA}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Vanara.PInvoke.Magnification", "PInvoke\Magnification\Vanara.PInvoke.Magnification.csproj", "{93EFCE73-4A4D-40A3-882E-6A4A20C40816}"
EndProject
@ -243,14 +237,20 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Vanara.PInvoke.P2P", "PInvo
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "P2P", "UnitTests\PInvoke\P2P\P2P.csproj", "{BBA10B94-658F-4BD7-A3DD-AA39CDF9A68D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Vanara.PInvoke.PeerDist", "PInvoke\PeerDist\Vanara.PInvoke.PeerDist.csproj", "{3108565B-2F79-447B-9386-42203CD949A5}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Vanara.PInvoke.PeerDist", "PInvoke\PeerDist\Vanara.PInvoke.PeerDist.csproj", "{3108565B-2F79-447B-9386-42203CD949A5}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Vanara.PInvoke.Drt", "PInvoke\Drt\Vanara.PInvoke.Drt.csproj", "{1AB1FB9D-CE35-4A2D-9132-FFA681654031}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Vanara.PInvoke.Drt", "PInvoke\Drt\Vanara.PInvoke.Drt.csproj", "{1AB1FB9D-CE35-4A2D-9132-FFA681654031}"
EndProject
Project("{778DAE3C-4631-46EA-AA77-85C1314464D9}") = "Vanara.PInvoke.FirewallApi", "PInvoke\FirewallApi\Vanara.PInvoke.FirewallApi.vbproj", "{E74C1A09-1051-4616-8693-B69A6A95AD03}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FirewallApi", "UnitTests\PInvoke\FirewallApi\FirewallApi.csproj", "{6A9599A6-89D5-4072-8DA1-A13E37023613}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BITS", "UnitTests\PInvoke\BITS\BITS.csproj", "{95E98514-A4D0-4ACD-8BE0-35D7BD185C71}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Cabinet", "UnitTests\PInvoke\Cabinet\Cabinet.csproj", "{CD8A5176-6EEC-4739-9748-A45D3FDECFA0}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ShlwApi", "UnitTests\PInvoke\ShlwApi\ShlwApi.csproj", "{80E10D65-5B7C-4BC8-8000-2B5BC9A21874}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@ -477,14 +477,6 @@ Global
{81A79BCD-C322-4742-842E-F70344FAD01D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{81A79BCD-C322-4742-842E-F70344FAD01D}.DebugNoTests|Any CPU.ActiveCfg = Debug|Any CPU
{81A79BCD-C322-4742-842E-F70344FAD01D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7D799541-C923-4593-A8C0-ABFA4F44AD3F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7D799541-C923-4593-A8C0-ABFA4F44AD3F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7D799541-C923-4593-A8C0-ABFA4F44AD3F}.DebugNoTests|Any CPU.ActiveCfg = Debug|Any CPU
{7D799541-C923-4593-A8C0-ABFA4F44AD3F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7A7D9AC3-B371-478B-95B3-B538CB903231}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7A7D9AC3-B371-478B-95B3-B538CB903231}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7A7D9AC3-B371-478B-95B3-B538CB903231}.DebugNoTests|Any CPU.ActiveCfg = Debug|Any CPU
{7A7D9AC3-B371-478B-95B3-B538CB903231}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FC54780C-E523-450E-BC74-1F900A652A2C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FC54780C-E523-450E-BC74-1F900A652A2C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FC54780C-E523-450E-BC74-1F900A652A2C}.DebugNoTests|Any CPU.ActiveCfg = Debug|Any CPU
@ -553,10 +545,6 @@ Global
{40E5CA4E-527F-4F79-875D-2342D1136FDD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{40E5CA4E-527F-4F79-875D-2342D1136FDD}.DebugNoTests|Any CPU.ActiveCfg = Debug|Any CPU
{40E5CA4E-527F-4F79-875D-2342D1136FDD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AF867D8E-1C94-4D4C-962D-D155581B0C3B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AF867D8E-1C94-4D4C-962D-D155581B0C3B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AF867D8E-1C94-4D4C-962D-D155581B0C3B}.DebugNoTests|Any CPU.ActiveCfg = Debug|Any CPU
{AF867D8E-1C94-4D4C-962D-D155581B0C3B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{85157400-A6FF-41E7-B650-4952ECBC28AD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{85157400-A6FF-41E7-B650-4952ECBC28AD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{85157400-A6FF-41E7-B650-4952ECBC28AD}.DebugNoTests|Any CPU.ActiveCfg = Debug|Any CPU
@ -809,6 +797,24 @@ Global
{6A9599A6-89D5-4072-8DA1-A13E37023613}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6A9599A6-89D5-4072-8DA1-A13E37023613}.DebugNoTests|Any CPU.ActiveCfg = Debug|Any CPU
{6A9599A6-89D5-4072-8DA1-A13E37023613}.Release|Any CPU.ActiveCfg = Release|Any CPU
{95E98514-A4D0-4ACD-8BE0-35D7BD185C71}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{95E98514-A4D0-4ACD-8BE0-35D7BD185C71}.Debug|Any CPU.Build.0 = Debug|Any CPU
{95E98514-A4D0-4ACD-8BE0-35D7BD185C71}.DebugNoTests|Any CPU.ActiveCfg = Debug|Any CPU
{95E98514-A4D0-4ACD-8BE0-35D7BD185C71}.DebugNoTests|Any CPU.Build.0 = Debug|Any CPU
{95E98514-A4D0-4ACD-8BE0-35D7BD185C71}.Release|Any CPU.ActiveCfg = Release|Any CPU
{95E98514-A4D0-4ACD-8BE0-35D7BD185C71}.Release|Any CPU.Build.0 = Release|Any CPU
{CD8A5176-6EEC-4739-9748-A45D3FDECFA0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CD8A5176-6EEC-4739-9748-A45D3FDECFA0}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CD8A5176-6EEC-4739-9748-A45D3FDECFA0}.DebugNoTests|Any CPU.ActiveCfg = Debug|Any CPU
{CD8A5176-6EEC-4739-9748-A45D3FDECFA0}.DebugNoTests|Any CPU.Build.0 = Debug|Any CPU
{CD8A5176-6EEC-4739-9748-A45D3FDECFA0}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CD8A5176-6EEC-4739-9748-A45D3FDECFA0}.Release|Any CPU.Build.0 = Release|Any CPU
{80E10D65-5B7C-4BC8-8000-2B5BC9A21874}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{80E10D65-5B7C-4BC8-8000-2B5BC9A21874}.Debug|Any CPU.Build.0 = Debug|Any CPU
{80E10D65-5B7C-4BC8-8000-2B5BC9A21874}.DebugNoTests|Any CPU.ActiveCfg = Debug|Any CPU
{80E10D65-5B7C-4BC8-8000-2B5BC9A21874}.DebugNoTests|Any CPU.Build.0 = Debug|Any CPU
{80E10D65-5B7C-4BC8-8000-2B5BC9A21874}.Release|Any CPU.ActiveCfg = Release|Any CPU
{80E10D65-5B7C-4BC8-8000-2B5BC9A21874}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
@ -848,8 +854,6 @@ Global
{2616C074-DF6C-47D4-BE82-6768885ACAC9} = {3EC6B40D-71D3-4E59-A0E0-544EC605FE11}
{385CAD2D-0A5E-4F80-927B-D5499D126B90} = {3EC6B40D-71D3-4E59-A0E0-544EC605FE11}
{81A79BCD-C322-4742-842E-F70344FAD01D} = {385CAD2D-0A5E-4F80-927B-D5499D126B90}
{7D799541-C923-4593-A8C0-ABFA4F44AD3F} = {385CAD2D-0A5E-4F80-927B-D5499D126B90}
{7A7D9AC3-B371-478B-95B3-B538CB903231} = {385CAD2D-0A5E-4F80-927B-D5499D126B90}
{FC54780C-E523-450E-BC74-1F900A652A2C} = {385CAD2D-0A5E-4F80-927B-D5499D126B90}
{D26F23F2-35E8-4253-BCEF-56F113C93B02} = {385CAD2D-0A5E-4F80-927B-D5499D126B90}
{D2F143F6-25E8-4B00-A260-B3E3AA46960F} = {385CAD2D-0A5E-4F80-927B-D5499D126B90}
@ -867,7 +871,6 @@ Global
{C580868E-D913-454C-BF9B-CAFE3BD28DF0} = {385CAD2D-0A5E-4F80-927B-D5499D126B90}
{6F668E05-8141-48B8-9031-326C79745AF4} = {385CAD2D-0A5E-4F80-927B-D5499D126B90}
{40E5CA4E-527F-4F79-875D-2342D1136FDD} = {385CAD2D-0A5E-4F80-927B-D5499D126B90}
{AF867D8E-1C94-4D4C-962D-D155581B0C3B} = {385CAD2D-0A5E-4F80-927B-D5499D126B90}
{85157400-A6FF-41E7-B650-4952ECBC28AD} = {385CAD2D-0A5E-4F80-927B-D5499D126B90}
{60A80A72-67BD-4CC2-95DA-0F6D3553A221} = {385CAD2D-0A5E-4F80-927B-D5499D126B90}
{EFAFBD16-A9FB-4656-896D-AD434B778EF0} = {385CAD2D-0A5E-4F80-927B-D5499D126B90}
@ -917,6 +920,9 @@ Global
{1AB1FB9D-CE35-4A2D-9132-FFA681654031} = {212ABBD0-B724-4CFA-9D6D-E3891547FA90}
{E74C1A09-1051-4616-8693-B69A6A95AD03} = {212ABBD0-B724-4CFA-9D6D-E3891547FA90}
{6A9599A6-89D5-4072-8DA1-A13E37023613} = {385CAD2D-0A5E-4F80-927B-D5499D126B90}
{95E98514-A4D0-4ACD-8BE0-35D7BD185C71} = {385CAD2D-0A5E-4F80-927B-D5499D126B90}
{CD8A5176-6EEC-4739-9748-A45D3FDECFA0} = {385CAD2D-0A5E-4F80-927B-D5499D126B90}
{80E10D65-5B7C-4BC8-8000-2B5BC9A21874} = {385CAD2D-0A5E-4F80-927B-D5499D126B90}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {543FAC75-2AF1-4EF1-9609-B242B63FEED4}