Skip to content

Commit

Permalink
changed namespaces back to suit Monai standards
Browse files Browse the repository at this point in the history
Signed-off-by: Neil South <[email protected]>
  • Loading branch information
neildsouth committed Aug 23, 2023
1 parent 1512ab7 commit ebf4c60
Show file tree
Hide file tree
Showing 358 changed files with 1,763 additions and 1,375 deletions.
2 changes: 1 addition & 1 deletion src/Common/Configuration/ArgoCallbackConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

using Microsoft.Extensions.Configuration;

namespace Monai.Deploy.Common.Configuration
namespace Monai.Deploy.WorkflowManager.Common.Configuration
{
public class ArgoCallbackConfiguration
{
Expand Down
2 changes: 1 addition & 1 deletion src/Common/Configuration/BackgroundServiceSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

using Microsoft.Extensions.Configuration;

namespace Monai.Deploy.Common.Configuration
namespace Monai.Deploy.WorkflowManager.Common.Configuration
{
public class BackgroundServiceSettings
{
Expand Down
2 changes: 1 addition & 1 deletion src/Common/Configuration/ConfigurationValidator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;

namespace Monai.Deploy.Common.Configuration
namespace Monai.Deploy.WorkflowManager.Common.Configuration
{
/// <summary>
/// Validates configuration based on application requirements and DICOM VR requirements.
Expand Down
2 changes: 1 addition & 1 deletion src/Common/Configuration/DicomAgentConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

using Microsoft.Extensions.Configuration;

namespace Monai.Deploy.Common.Configuration
namespace Monai.Deploy.WorkflowManager.Common.Configuration
{
public class DicomAgentConfiguration
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
using System;
using System.Runtime.Serialization;

namespace Monai.Deploy.Common.Configuration.Exceptions
namespace Monai.Deploy.WorkflowManager.Common.Configuration.Exceptions
{
/// <summary>
/// Represnets an exception based upon invalid configuration.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

using Microsoft.Extensions.Configuration;

namespace Monai.Deploy.Common.Configuration
namespace Monai.Deploy.WorkflowManager.Common.Configuration
{
public class InformaticsGatewayConfiguration
{
Expand Down
2 changes: 1 addition & 1 deletion src/Common/Configuration/MessageBrokerConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
using Microsoft.Extensions.Configuration;
using Monai.Deploy.Messaging.Configuration;

namespace Monai.Deploy.Common.Configuration
namespace Monai.Deploy.WorkflowManager.Common.Configuration
{
public class MessageBrokerConfiguration : MessageBrokerServiceConfiguration
{
Expand Down
2 changes: 1 addition & 1 deletion src/Common/Configuration/MessageBrokerConfigurationKeys.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

using Microsoft.Extensions.Configuration;

namespace Monai.Deploy.Common.Configuration
namespace Monai.Deploy.WorkflowManager.Common.Configuration
{
public class MessageBrokerConfigurationKeys
{
Expand Down
2 changes: 1 addition & 1 deletion src/Common/Configuration/PagedOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
using Microsoft.Extensions.Configuration;

namespace Monai.Deploy.Common.Configuration
namespace Monai.Deploy.WorkflowManager.Common.Configuration
{
public class PagedOptions
{
Expand Down
2 changes: 1 addition & 1 deletion src/Common/Configuration/PaginationSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

using Microsoft.Extensions.Configuration;

namespace Monai.Deploy.Common.Configuration
namespace Monai.Deploy.WorkflowManager.Common.Configuration
{
public class EndpointSettings
{
Expand Down
2 changes: 1 addition & 1 deletion src/Common/Configuration/RetryConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
using System.Collections.Generic;
using Microsoft.Extensions.Configuration;

namespace Monai.Deploy.Common.Configuration
namespace Monai.Deploy.WorkflowManager.Common.Configuration
{
public class RetryConfiguration
{
Expand Down
2 changes: 1 addition & 1 deletion src/Common/Configuration/StorageConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
using Microsoft.Extensions.Configuration;
using Monai.Deploy.Storage.Configuration;

namespace Monai.Deploy.Common.Configuration
namespace Monai.Deploy.WorkflowManager.Common.Configuration
{
public class StorageConfiguration : StorageServiceConfiguration
{
Expand Down
2 changes: 1 addition & 1 deletion src/Common/Configuration/TaskManagerConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
using System.Collections.Generic;
using Microsoft.Extensions.Configuration;

namespace Monai.Deploy.Common.Configuration
namespace Monai.Deploy.WorkflowManager.Common.Configuration
{
public class TaskManagerConfiguration
{
Expand Down
2 changes: 1 addition & 1 deletion src/Common/Configuration/WorkflowManagerOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
using System.Collections.Generic;
using Microsoft.Extensions.Configuration;

namespace Monai.Deploy.Common.Configuration
namespace Monai.Deploy.WorkflowManager.Common.Configuration
{
public class WorkflowManagerOptions : PagedOptions
{
Expand Down
10 changes: 5 additions & 5 deletions src/Common/Miscellaneous/ApiControllerBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
using Ardalis.GuardClauses;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Options;
using Monai.Deploy.Common.Miscellaneous.Wrappers;
using Monai.Deploy.Common.Configuration;
using Monai.Deploy.Common.Miscellaneous.Filter;
using Monai.Deploy.Common.Miscellaneous.Services;
using Monai.Deploy.WorkflowManager.Common.Miscellaneous.Wrappers;
using Monai.Deploy.WorkflowManager.Common.Configuration;
using Monai.Deploy.WorkflowManager.Common.Miscellaneous.Filter;
using Monai.Deploy.WorkflowManager.Common.Miscellaneous.Services;

namespace Monai.Deploy.Common.ControllersShared
namespace Monai.Deploy.WorkflowManager.Common.ControllersShared
{
/// <summary>
/// Base Api Controller.
Expand Down
2 changes: 1 addition & 1 deletion src/Common/Miscellaneous/Filter/PaginationFilter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

namespace Monai.Deploy.Common.Miscellaneous.Filter
namespace Monai.Deploy.WorkflowManager.Common.Miscellaneous.Filter
{
/// <summary>
/// Pagination Filter class.
Expand Down
2 changes: 1 addition & 1 deletion src/Common/Miscellaneous/Filter/TimeFilter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

namespace Monai.Deploy.Common.Miscellaneous.Filter
namespace Monai.Deploy.WorkflowManager.Common.Miscellaneous.Filter
{
public class TimeFilter : PaginationFilter
{
Expand Down
2 changes: 1 addition & 1 deletion src/Common/Miscellaneous/HttpLoggingExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;

namespace Monai.Deploy.Common.Miscellaneous
namespace Monai.Deploy.WorkflowManager.Common.Miscellaneous
{
public static class HttpLoggingExtensions
{
Expand Down
2 changes: 1 addition & 1 deletion src/Common/Miscellaneous/IMonaiService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

namespace Monai.Deploy.Common.Miscellaneous
namespace Monai.Deploy.WorkflowManager.Common.Miscellaneous
{
public interface IMonaiService
{
Expand Down
2 changes: 1 addition & 1 deletion src/Common/Miscellaneous/IMonaiServiceLocator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

namespace Monai.Deploy.Common.Miscellaneous
namespace Monai.Deploy.WorkflowManager.Common.Miscellaneous
{
public interface IMonaiServiceLocator
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Configuration\Monai.Deploy.Common.Configuration.csproj" />
<ProjectReference Include="..\Configuration\Monai.Deploy.WorkflowManager.Common.Configuration.csproj" />
</ItemGroup>

<PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Common/Miscellaneous/MonaiHealthCheck.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

using Microsoft.Extensions.Diagnostics.HealthChecks;

namespace Monai.Deploy.Common.Miscellaneous
namespace Monai.Deploy.WorkflowManager.Common.Miscellaneous
{
public class MonaiHealthCheck : IHealthCheck
{
Expand Down
2 changes: 1 addition & 1 deletion src/Common/Miscellaneous/MonaiServiceLocator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

using Ardalis.GuardClauses;

namespace Monai.Deploy.Common.Miscellaneous
namespace Monai.Deploy.WorkflowManager.Common.Miscellaneous
{
public class MonaiServiceLocator : IMonaiServiceLocator
{
Expand Down
2 changes: 1 addition & 1 deletion src/Common/Miscellaneous/PatientKeys.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

namespace Monai.Deploy.Common.Miscellaneous
namespace Monai.Deploy.WorkflowManager.Common.Miscellaneous
{
public static class PatientKeys
{
Expand Down
2 changes: 1 addition & 1 deletion src/Common/Miscellaneous/PlugInAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

namespace Monai.Deploy.Common.Miscellaneous
namespace Monai.Deploy.WorkflowManager.Common.Miscellaneous
{
[AttributeUsage(AttributeTargets.Assembly)]
public class PlugInAttribute : Attribute
Expand Down
2 changes: 1 addition & 1 deletion src/Common/Miscellaneous/ServiceStatus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

namespace Monai.Deploy.Common.Miscellaneous
namespace Monai.Deploy.WorkflowManager.Common.Miscellaneous
{
/// <summary>
/// Defines the state of a running service.
Expand Down
4 changes: 2 additions & 2 deletions src/Common/Miscellaneous/Services/IUriService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
* limitations under the License.
*/

using Monai.Deploy.Common.Miscellaneous.Filter;
using Monai.Deploy.WorkflowManager.Common.Miscellaneous.Filter;

namespace Monai.Deploy.Common.Miscellaneous.Services
namespace Monai.Deploy.WorkflowManager.Common.Miscellaneous.Services
{
/// <summary>
/// Uri Serivce.
Expand Down
4 changes: 2 additions & 2 deletions src/Common/Miscellaneous/Services/UriService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
*/

using Microsoft.AspNetCore.WebUtilities;
using Monai.Deploy.Common.Miscellaneous.Filter;
using Monai.Deploy.WorkflowManager.Common.Miscellaneous.Filter;

namespace Monai.Deploy.Common.Miscellaneous.Services
namespace Monai.Deploy.WorkflowManager.Common.Miscellaneous.Services
{
/// <summary>
/// Uri Service.
Expand Down
2 changes: 1 addition & 1 deletion src/Common/Miscellaneous/Utilities/DicomTagUtilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
using System.Text.RegularExpressions;
using FellowOakDicom;

namespace Monai.Deploy.Common.Miscellaneous.Utilities
namespace Monai.Deploy.WorkflowManager.Common.Miscellaneous.Utilities
{
public static class DicomTagUtilities
{
Expand Down
2 changes: 1 addition & 1 deletion src/Common/Miscellaneous/ValidationConstants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

namespace Monai.Deploy.Common.Miscellaneous
namespace Monai.Deploy.WorkflowManager.Common.Miscellaneous
{
public static class ValidationConstants
{
Expand Down
6 changes: 3 additions & 3 deletions src/Common/Miscellaneous/Wrappers/PagedResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
* limitations under the License.
*/

using Monai.Deploy.Common.Miscellaneous.Services;
using Monai.Deploy.Common.Miscellaneous.Filter;
using Monai.Deploy.WorkflowManager.Common.Miscellaneous.Services;
using Monai.Deploy.WorkflowManager.Common.Miscellaneous.Filter;

namespace Monai.Deploy.Common.Miscellaneous.Wrappers
namespace Monai.Deploy.WorkflowManager.Common.Miscellaneous.Wrappers
{
/// <summary>
/// Paged Response for use with paginations.
Expand Down
2 changes: 1 addition & 1 deletion src/Common/Miscellaneous/Wrappers/Response.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

namespace Monai.Deploy.Common.Miscellaneous.Wrappers
namespace Monai.Deploy.WorkflowManager.Common.Miscellaneous.Wrappers
{
/// <summary>
/// Response object.
Expand Down
6 changes: 1 addition & 5 deletions src/Common/Miscellaneous/Wrappers/StatsPagedResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace Monai.Deploy.Common.Miscellaneous.Wrappers
namespace Monai.Deploy.WorkflowManager.Common.Miscellaneous.Wrappers
{
public class StatsPagedResponse<T> : PagedResponse<T>
{
Expand All @@ -30,9 +30,5 @@ public StatsPagedResponse(T data, int pageNumber, int pageSize) : base(data, pag
{

}
//public StatsPagedResponse(PagedResponse<T> paged) : base(paged.Data, paged.PageNumber, paged.PageSize)
//{
// int re = 0;
//}
}
}
2 changes: 1 addition & 1 deletion src/Common/Miscellaneous/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@
"resolved": "6.0.0",
"contentHash": "TY8/9+tI0mNaUMgntOxxaq2ndTkdXqLSxvPmas7XEqOlv9lQtB7wLjYGd756lOaO7Dvb5r/WXhluM+0Xe87v5Q=="
},
"monai.deploy.common.configuration": {
"Monai.Deploy.WorkflowManager.Common.configuration": {
"type": "Project",
"dependencies": {
"Monai.Deploy.Messaging": "[0.1.25, )",
Expand Down
18 changes: 9 additions & 9 deletions src/Monai.Deploy.WorkflowManager.sln
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Monai.Deploy.WorkflowManage
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Common", "Common", "{37A19144-CEA5-47A2-9FFD-22C522E8B895}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Monai.Deploy.Common.Configuration", "Common\Configuration\Monai.Deploy.Common.Configuration.csproj", "{DD11E3E8-1D6F-47F9-98A7-5D2CC7A53C43}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Monai.Deploy.WorkflowManager.Common.Configuration", "Common\Configuration\Monai.Deploy.WorkflowManager.Common.Configuration.csproj", "{DD11E3E8-1D6F-47F9-98A7-5D2CC7A53C43}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Monai.Deploy.WorkflowManager.MonaiBackgroundService", "WorkflowManager\MonaiBackgroundService\Monai.Deploy.WorkflowManager.MonaiBackgroundService.csproj", "{93F4FE97-120C-44DC-9B21-69FB7EAB5846}"
EndProject
Expand All @@ -80,15 +80,15 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Monai.Deploy.WorkflowManage
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Monai.Deploy.WorkflowManager.Common.Tests", "..\tests\UnitTests\Common.Tests\Monai.Deploy.WorkflowManager.Common.Tests.csproj", "{75A4AEDA-0386-4B2D-9DBA-BC9AE733660E}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Monai.Deploy.WorkflowManager.Services", "WorkflowManager\Monai.Deploy.WorkflowManager.Services\Monai.Deploy.WorkflowManager.Services.csproj", "{526FF10C-1C7F-4C26-8E8A-D7ACD65F5467}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Monai.Deploy.WorkflowManager.Services.Tests", "..\tests\UnitTests\WorkflowManager.Services.Tests\Monai.Deploy.WorkflowManager.Services.Tests.csproj", "{0D40F7D6-3747-4280-8EB3-9F3A18AC1125}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Monai.Deploy.WorkflowManager.TaskManager.Email", "TaskManager\Plug-ins\Email\Monai.Deploy.WorkflowManager.TaskManager.Email.csproj", "{72DFDA92-0689-41D7-B3F1-9D41D5AA276E}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Monai.Deploy.WorkflowManager.TaskManager.Email.Tests", "..\tests\UnitTests\TaskManager.Email.Tests\Monai.Deploy.WorkflowManager.TaskManager.Email.Tests.csproj", "{0F0D6868-366E-47FB-B059-F1176562CC15}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Monai.Deploy.Common.Miscellaneous", "Common\Miscellaneous\Monai.Deploy.Common.Miscellaneous.csproj", "{8BB67FED-E81A-4EC9-9167-C9F313D96C12}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Monai.Deploy.WorkflowManager.Common.Miscellaneous", "Common\Miscellaneous\Monai.Deploy.WorkflowManager.Common.Miscellaneous.csproj", "{8BB67FED-E81A-4EC9-9167-C9F313D96C12}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Monai.Deploy.WorkflowManager.Services", "WorkflowManager\Services\Monai.Deploy.WorkflowManager.Services.csproj", "{76A9FF94-862D-43E8-A0A7-562DD1DDDB3B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down Expand Up @@ -232,10 +232,6 @@ Global
{75A4AEDA-0386-4B2D-9DBA-BC9AE733660E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{75A4AEDA-0386-4B2D-9DBA-BC9AE733660E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{75A4AEDA-0386-4B2D-9DBA-BC9AE733660E}.Release|Any CPU.Build.0 = Release|Any CPU
{526FF10C-1C7F-4C26-8E8A-D7ACD65F5467}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{526FF10C-1C7F-4C26-8E8A-D7ACD65F5467}.Debug|Any CPU.Build.0 = Debug|Any CPU
{526FF10C-1C7F-4C26-8E8A-D7ACD65F5467}.Release|Any CPU.ActiveCfg = Release|Any CPU
{526FF10C-1C7F-4C26-8E8A-D7ACD65F5467}.Release|Any CPU.Build.0 = Release|Any CPU
{0D40F7D6-3747-4280-8EB3-9F3A18AC1125}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0D40F7D6-3747-4280-8EB3-9F3A18AC1125}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0D40F7D6-3747-4280-8EB3-9F3A18AC1125}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand All @@ -252,6 +248,10 @@ Global
{8BB67FED-E81A-4EC9-9167-C9F313D96C12}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8BB67FED-E81A-4EC9-9167-C9F313D96C12}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8BB67FED-E81A-4EC9-9167-C9F313D96C12}.Release|Any CPU.Build.0 = Release|Any CPU
{76A9FF94-862D-43E8-A0A7-562DD1DDDB3B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{76A9FF94-862D-43E8-A0A7-562DD1DDDB3B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{76A9FF94-862D-43E8-A0A7-562DD1DDDB3B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{76A9FF94-862D-43E8-A0A7-562DD1DDDB3B}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down Expand Up @@ -292,11 +292,11 @@ Global
{BF6569A1-1A5A-4358-9C02-1A6A5F0FBFD9} = {71DDEE7B-E213-4E39-A7F4-4646783A27F7}
{C853A9E3-C53D-4B1A-BFDA-228689A8C94C} = {71DDEE7B-E213-4E39-A7F4-4646783A27F7}
{75A4AEDA-0386-4B2D-9DBA-BC9AE733660E} = {71DDEE7B-E213-4E39-A7F4-4646783A27F7}
{526FF10C-1C7F-4C26-8E8A-D7ACD65F5467} = {AC5B198A-C3F2-4AD2-B532-E71B4630BDD5}
{0D40F7D6-3747-4280-8EB3-9F3A18AC1125} = {71DDEE7B-E213-4E39-A7F4-4646783A27F7}
{72DFDA92-0689-41D7-B3F1-9D41D5AA276E} = {541C5347-5D7D-44B7-95D3-B6FB3D9EB955}
{0F0D6868-366E-47FB-B059-F1176562CC15} = {71DDEE7B-E213-4E39-A7F4-4646783A27F7}
{8BB67FED-E81A-4EC9-9167-C9F313D96C12} = {37A19144-CEA5-47A2-9FFD-22C522E8B895}
{76A9FF94-862D-43E8-A0A7-562DD1DDDB3B} = {AC5B198A-C3F2-4AD2-B532-E71B4630BDD5}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {DC0D56C8-D8CB-45CE-B528-F3DCF86D63ED}
Expand Down
Loading

0 comments on commit ebf4c60

Please sign in to comment.