Переглянути джерело

commit: Service interface bind example

码农 6 роки тому
батько
коміт
3c239a0742

+ 27 - 0
DataExchange.Tests/App.cs

@@ -0,0 +1,27 @@
+using System;
+using Bridge;
+using Bridge.Html5;
+
+namespace DataExchange.Tests
+{
+    public class App
+    {
+        private const string InterfaceName = "BrApi0";
+
+        static App()
+        {
+            if (Script.Undefined == (Window.Get(InterfaceName)))
+                Window.Set(InterfaceName, new DummyDataExchangeApi());
+        }
+
+        public static void Main()
+        {
+            var dxs = new DataExchangeService(Window.Get<IDataExchangeApi>(InterfaceName));
+
+            var svc = dxs.Create<IInterface1>("Svc1Name");
+            svc.Op0(DateTime.Now);
+            svc.Op1(new Op1Input());
+            svc.Op2(true);
+        }
+    }
+}

+ 73 - 0
DataExchange.Tests/DataExchange.Tests.csproj

@@ -0,0 +1,73 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
+  <PropertyGroup>
+    <NoStdLib>true</NoStdLib>
+    <NuGetPackageImportStamp>
+    </NuGetPackageImportStamp>
+  </PropertyGroup>
+  <PropertyGroup>
+    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+    <SchemaVersion>2.0</SchemaVersion>
+    <ProjectGuid>{B1FABEE0-2F76-46BA-AD62-23646B2011AE}</ProjectGuid>
+    <OutputType>Library</OutputType>
+    <AppDesignerFolder>Properties</AppDesignerFolder>
+    <RootNamespace>DataExchange.Tests</RootNamespace>
+    <AssemblyName>DataExchange.Tests</AssemblyName>
+    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
+    <FileAlignment>512</FileAlignment>
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+    <DebugSymbols>true</DebugSymbols>
+    <DebugType>full</DebugType>
+    <Optimize>false</Optimize>
+    <OutputPath>bin\Debug\</OutputPath>
+    <DefineConstants>DEBUG;TRACE</DefineConstants>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+    <DebugType>pdbonly</DebugType>
+    <Optimize>true</Optimize>
+    <OutputPath>bin\Release\</OutputPath>
+    <DefineConstants>TRACE</DefineConstants>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+  </PropertyGroup>
+  <ItemGroup>
+    <Compile Include="App.cs" />
+    <Compile Include="DummyDataExchangeApi.cs" />
+    <Compile Include="IInterface1.cs" />
+    <Compile Include="Properties\AssemblyInfo.cs" />
+  </ItemGroup>
+  <ItemGroup>
+    <None Include="bridge.json" />
+    <None Include="packages.config" />
+  </ItemGroup>
+  <ItemGroup>
+    <Reference Include="Bridge, Version=17.7.0.0, Culture=neutral, processorArchitecture=MSIL">
+      <HintPath>C:\NuGetLocalRepo\Bridge.Core.17.7.0\lib\net40\Bridge.dll</HintPath>
+    </Reference>
+    <Reference Include="Bridge.Html5, Version=17.7.0.0, Culture=neutral, processorArchitecture=MSIL">
+      <HintPath>C:\NuGetLocalRepo\Bridge.Html5.17.7.0\lib\net40\Bridge.Html5.dll</HintPath>
+    </Reference>
+    <Reference Include="Newtonsoft.Json, Version=1.14.0.0, Culture=neutral, processorArchitecture=MSIL">
+      <HintPath>C:\NuGetLocalRepo\Bridge.Newtonsoft.Json.1.14.0\lib\net40\Newtonsoft.Json.dll</HintPath>
+    </Reference>
+  </ItemGroup>
+  <ItemGroup>
+    <ProjectReference Include="..\DataExchange\DataExchange.csproj">
+      <Project>{ed4bfd14-30ae-4a11-a0c8-1847aa91cb9b}</Project>
+      <Name>DataExchange</Name>
+    </ProjectReference>
+  </ItemGroup>
+  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
+  <Import Project="C:\NuGetLocalRepo\Bridge.Min.17.7.0\build\Bridge.Min.targets" Condition="Exists('C:\NuGetLocalRepo\Bridge.Min.17.7.0\build\Bridge.Min.targets')" />
+  <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
+    <PropertyGroup>
+      <ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText>
+    </PropertyGroup>
+    <Error Condition="!Exists('C:\NuGetLocalRepo\Bridge.Min.17.7.0\build\Bridge.Min.targets')" Text="$([System.String]::Format('$(ErrorText)', 'C:\NuGetLocalRepo\Bridge.Min.17.7.0\build\Bridge.Min.targets'))" />
+  </Target>
+</Project>

+ 13 - 0
DataExchange.Tests/DummyDataExchangeApi.cs

@@ -0,0 +1,13 @@
+using System;
+
+namespace DataExchange.Tests
+{
+    public class DummyDataExchangeApi : IDataExchangeApi
+    {
+        public string InvokeService(string serviceName, string actionName, string inputJson)
+        {
+            Console.WriteLine($"Svc:{serviceName},Act:{actionName},input:{inputJson}");
+            return null;
+        }
+    }
+}

+ 21 - 0
DataExchange.Tests/IInterface1.cs

@@ -0,0 +1,21 @@
+using System;
+
+namespace DataExchange.Tests
+{
+    internal interface IInterface1
+    {
+        void Op0(DateTime dt);
+
+        string Op1(Op1Input input);
+
+        bool Op2(bool input);
+    }
+
+    internal class Op1Input
+    {
+        public int I { get; set; }
+        public bool B { get; set; }
+        public string S { get; set; }
+        public DateTime DateTime { get; set; }
+    }
+}

+ 36 - 0
DataExchange.Tests/Properties/AssemblyInfo.cs

@@ -0,0 +1,36 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following 
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("DataExchange.Tests")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("Microsoft")]
+[assembly: AssemblyProduct("DataExchange.Tests")]
+[assembly: AssemblyCopyright("Copyright © Microsoft 2019")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible 
+// to COM components.  If you need to access a type in this assembly from 
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("b1fabee0-2f76-46ba-ad62-23646b2011ae")]
+
+// Version information for an assembly consists of the following four values:
+//
+//      Major Version
+//      Minor Version 
+//      Build Number
+//      Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers 
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]

+ 76 - 0
DataExchange.Tests/bridge.json

@@ -0,0 +1,76 @@
+// See all bridge.json configuration options at:
+// https://github.com/bridgedotnet/Bridge/wiki/global-configuration
+
+{
+  // The folder to output JavaScript (.js) files.
+  "output": "$(OutDir)/bridge/",
+
+  // Set to "Minified" to generate .min.js files.
+  // Set to "Both" to generate both minified and non-minified .js files.
+  // "Formatted" generates non-minified .js files.
+  "outputFormatting": "Formatted",
+
+  // Enable the Bridge Console.
+  // Default is false.
+  "console": {
+    "enabled": true
+  },
+
+  // Enable browser debugging of C# files.
+  // Default is false.
+  "sourceMap": {
+    "enabled": true
+  },
+
+  // Set to true to disable Reflection metadata generation.
+  // Default is false.
+  "reflection": {
+    "disabled": false
+  },
+
+  // Generate TypeScript Definition (.d.ts) files.
+  // Default is false.
+  "generateTypeScript": true,
+
+  // Delete everything from the output folder.
+  // Default is false
+  //        ** WARNING **
+  // If true, all files within the "output"
+  // folder location will be deleted on Build.
+  //    ** USE WITH CAUTION **
+  "cleanOutputFolderBeforeBuild": false,
+
+  // Set to true to enable bridge.report.log generation.
+  // Default is false.
+  "report": {
+    "enabled": false
+  },
+
+  // Rules to manage generated JavaScript syntax.
+  // Default is "Managed"
+  "rules": {
+    "anonymousType": "Plain",
+    "arrayIndex": "Managed",
+    "autoProperty": "Plain",
+    "boxing": "Managed",
+    "externalCast": "Plain",
+    "inlineComment": "Plain",
+    "integer": "Managed",
+    "lambda": "Plain"
+  },
+
+  // Automatically generate an index.html file
+  // and add the file to the output directory.
+  // Default is false.
+  "html": {
+    "disabled": false
+  },
+
+  // Add compilation logging to your Project.
+  // Outputs a tab-delimited bridge.log file.
+  // Set to "Trace" for full logging.
+  // Default is "None".
+  "logging": {
+    "level": "None"
+  }
+}

+ 8 - 0
DataExchange.Tests/packages.config

@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="utf-8"?>
+<packages>
+  <package id="Bridge" version="17.7.0" targetFramework="net45" />
+  <package id="Bridge.Core" version="17.7.0" targetFramework="net45" />
+  <package id="Bridge.Html5" version="17.7.0" targetFramework="net45" />
+  <package id="Bridge.Min" version="17.7.0" targetFramework="net45" />
+  <package id="Bridge.Newtonsoft.Json" version="1.14.0" targetFramework="net45" />
+</packages>

+ 66 - 0
DataExchange/DataExchange.csproj

@@ -0,0 +1,66 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
+  <PropertyGroup>
+    <NoStdLib>true</NoStdLib>
+    <NuGetPackageImportStamp>
+    </NuGetPackageImportStamp>
+  </PropertyGroup>
+  <PropertyGroup>
+    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+    <SchemaVersion>2.0</SchemaVersion>
+    <ProjectGuid>{ED4BFD14-30AE-4A11-A0C8-1847AA91CB9B}</ProjectGuid>
+    <OutputType>Library</OutputType>
+    <AppDesignerFolder>Properties</AppDesignerFolder>
+    <RootNamespace>DataExchange</RootNamespace>
+    <AssemblyName>DataExchange</AssemblyName>
+    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
+    <FileAlignment>512</FileAlignment>
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+    <DebugSymbols>true</DebugSymbols>
+    <DebugType>full</DebugType>
+    <Optimize>false</Optimize>
+    <OutputPath>bin\Debug\</OutputPath>
+    <DefineConstants>DEBUG;TRACE</DefineConstants>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+    <DebugType>pdbonly</DebugType>
+    <Optimize>true</Optimize>
+    <OutputPath>bin\Release\</OutputPath>
+    <DefineConstants>TRACE</DefineConstants>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+  </PropertyGroup>
+  <ItemGroup>
+    <Compile Include="DataExchangeService.cs" />
+    <Compile Include="IDataExchangeApi.cs" />
+    <Compile Include="Properties\AssemblyInfo.cs" />
+  </ItemGroup>
+  <ItemGroup>
+    <None Include="bridge.json" />
+    <None Include="packages.config" />
+  </ItemGroup>
+  <ItemGroup>
+    <Reference Include="Bridge, Version=17.7.0.0, Culture=neutral, processorArchitecture=MSIL">
+      <HintPath>C:\NuGetLocalRepo\Bridge.Core.17.7.0\lib\net40\Bridge.dll</HintPath>
+    </Reference>
+    <Reference Include="Bridge.Html5, Version=17.7.0.0, Culture=neutral, processorArchitecture=MSIL">
+      <HintPath>C:\NuGetLocalRepo\Bridge.Html5.17.7.0\lib\net40\Bridge.Html5.dll</HintPath>
+    </Reference>
+    <Reference Include="Newtonsoft.Json, Version=1.14.0.0, Culture=neutral, processorArchitecture=MSIL">
+      <HintPath>C:\NuGetLocalRepo\Bridge.Newtonsoft.Json.1.14.0\lib\net40\Newtonsoft.Json.dll</HintPath>
+    </Reference>
+  </ItemGroup>
+  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
+  <Import Project="C:\NuGetLocalRepo\Bridge.Min.17.7.0\build\Bridge.Min.targets" Condition="Exists('C:\NuGetLocalRepo\Bridge.Min.17.7.0\build\Bridge.Min.targets')" />
+  <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
+    <PropertyGroup>
+      <ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText>
+    </PropertyGroup>
+    <Error Condition="!Exists('C:\NuGetLocalRepo\Bridge.Min.17.7.0\build\Bridge.Min.targets')" Text="$([System.String]::Format('$(ErrorText)', 'C:\NuGetLocalRepo\Bridge.Min.17.7.0\build\Bridge.Min.targets'))" />
+  </Target>
+</Project>

+ 52 - 0
DataExchange/DataExchangeService.cs

@@ -0,0 +1,52 @@
+using Bridge;
+using Newtonsoft.Json;
+using System;
+using System.Reflection;
+
+namespace DataExchange
+{
+    public class DataExchangeService
+    {
+        private readonly IDataExchangeApi _dataExchangeApi;
+
+        public DataExchangeService(IDataExchangeApi dataExchangeApi)
+        {
+            _dataExchangeApi = dataExchangeApi;
+        }
+
+        public TInterface Create<TInterface>(string serviceName)
+        {
+            var interfaceType = typeof(TInterface);
+            if (interfaceType.IsNested) throw new NotSupportedException("Not support nested type define");
+
+            var interfaceMethodInfos = interfaceType.GetMethods(BindingFlags.Public | BindingFlags.Instance);
+
+            object si = new { };
+
+            foreach (var methodInfo in interfaceMethodInfos)
+            {
+                if (1 != methodInfo.GetParameters().Length) throw new NotSupportedException($"Only 1 param supported, {interfaceType.FullName}::{methodInfo.Name}");
+
+                var explicitMethodName = $"{interfaceType.FullName}.{methodInfo.Name}".Replace('.', '$');
+
+                var implement = new Func<object, object>(input =>
+                {
+                    //handle params and returns
+                    var inputJson = JsonConvert.SerializeObject(input);
+                    var outputJson = _dataExchangeApi.InvokeService(serviceName, methodInfo.Name, inputJson);
+                    var output = JsonConvert.DeserializeObject(outputJson, methodInfo.ReturnType);
+                    return output;
+                });
+
+                //interface alias
+                si[explicitMethodName] = implement;
+                si[methodInfo.Name] = implement;
+            }
+
+            return DuckCast<TInterface>(si);
+        }
+
+        [Template("{instance}")]
+        private static extern T DuckCast<T>(object instance);
+    }
+}

+ 8 - 0
DataExchange/IDataExchangeApi.cs

@@ -0,0 +1,8 @@
+namespace DataExchange
+{
+
+    public interface IDataExchangeApi
+    {
+        string InvokeService(string serviceName, string actionName, string inputJson);
+    }
+}

+ 36 - 0
DataExchange/Properties/AssemblyInfo.cs

@@ -0,0 +1,36 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following 
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("DataExchange")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("Microsoft")]
+[assembly: AssemblyProduct("DataExchange")]
+[assembly: AssemblyCopyright("Copyright © Microsoft 2019")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible 
+// to COM components.  If you need to access a type in this assembly from 
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("ed4bfd14-30ae-4a11-a0c8-1847aa91cb9b")]
+
+// Version information for an assembly consists of the following four values:
+//
+//      Major Version
+//      Minor Version 
+//      Build Number
+//      Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers 
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]

+ 76 - 0
DataExchange/bridge.json

@@ -0,0 +1,76 @@
+// See all bridge.json configuration options at:
+// https://github.com/bridgedotnet/Bridge/wiki/global-configuration
+
+{
+  // The folder to output JavaScript (.js) files.
+  "output": "$(OutDir)/bridge/",
+
+  // Set to "Minified" to generate .min.js files.
+  // Set to "Both" to generate both minified and non-minified .js files.
+  // "Formatted" generates non-minified .js files.
+  "outputFormatting": "Formatted",
+
+  // Enable the Bridge Console.
+  // Default is false.
+  "console": {
+    "enabled": true
+  },
+
+  // Enable browser debugging of C# files.
+  // Default is false.
+  "sourceMap": {
+    "enabled": true
+  },
+
+  // Set to true to disable Reflection metadata generation.
+  // Default is false.
+  "reflection": {
+    "disabled": false
+  },
+
+  // Generate TypeScript Definition (.d.ts) files.
+  // Default is false.
+  "generateTypeScript": false,
+
+  // Delete everything from the output folder.
+  // Default is false
+  //        ** WARNING **
+  // If true, all files within the "output"
+  // folder location will be deleted on Build.
+  //    ** USE WITH CAUTION **
+  "cleanOutputFolderBeforeBuild": false,
+
+  // Set to true to enable bridge.report.log generation.
+  // Default is false.
+  "report": {
+    "enabled": false
+  },
+
+  // Rules to manage generated JavaScript syntax.
+  // Default is "Managed"
+  "rules": {
+    "anonymousType": "Plain",
+    "arrayIndex": "Managed",
+    "autoProperty": "Plain",
+    "boxing": "Managed",
+    "externalCast": "Plain",
+    "inlineComment": "Plain",
+    "integer": "Managed",
+    "lambda": "Plain"
+  },
+
+  // Automatically generate an index.html file
+  // and add the file to the output directory.
+  // Default is false.
+  "html": {
+    "disabled": false
+  },
+
+  // Add compilation logging to your Project.
+  // Outputs a tab-delimited bridge.log file.
+  // Set to "Trace" for full logging.
+  // Default is "None".
+  "logging": {
+    "level": "None"
+  }
+}

+ 8 - 0
DataExchange/packages.config

@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="utf-8"?>
+<packages>
+  <package id="Bridge" version="17.7.0" targetFramework="net45" />
+  <package id="Bridge.Core" version="17.7.0" targetFramework="net45" />
+  <package id="Bridge.Html5" version="17.7.0" targetFramework="net45" />
+  <package id="Bridge.Min" version="17.7.0" targetFramework="net45" />
+  <package id="Bridge.Newtonsoft.Json" version="1.14.0" targetFramework="net45" />
+</packages>

+ 0 - 1
DuckInterface/InterfaceCreator.cs

@@ -19,7 +19,6 @@ namespace DuckInterface
             {
                 var bridgeInterfaceMethodName = $"{interfaceType.FullName}.{methodInfo.Name}".Replace('.', '$');
 
-                //TODO: handle params
                 var implement = new Action(() =>
                 {
                     Console.WriteLine($"GEN:{methodInfo.Name} @ {serviceName}");

+ 1 - 1
README.md

@@ -6,5 +6,5 @@ A meta hack, like impromptu-interface for Bridge.NET
 
 - [x] DuckType (by Bridge.NET Template)
 - [x] Interface implement on runtime
-- [ ] Handleing params and returns
+- [x] Handleing params and returns
 - [ ] AOP

+ 12 - 0
bridge-impromptu-interface.sln

@@ -12,6 +12,10 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "@", "@", "{DC15E691-AB29-4E
 		README.md = README.md
 	EndProjectSection
 EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataExchange", "DataExchange\DataExchange.csproj", "{ED4BFD14-30AE-4A11-A0C8-1847AA91CB9B}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataExchange.Tests", "DataExchange.Tests\DataExchange.Tests.csproj", "{B1FABEE0-2F76-46BA-AD62-23646B2011AE}"
+EndProject
 Global
 	GlobalSection(SolutionConfigurationPlatforms) = preSolution
 		Debug|Any CPU = Debug|Any CPU
@@ -22,6 +26,14 @@ Global
 		{C7B846A7-3A2D-42FF-A91E-C15477F0DDBB}.Debug|Any CPU.Build.0 = Debug|Any CPU
 		{C7B846A7-3A2D-42FF-A91E-C15477F0DDBB}.Release|Any CPU.ActiveCfg = Release|Any CPU
 		{C7B846A7-3A2D-42FF-A91E-C15477F0DDBB}.Release|Any CPU.Build.0 = Release|Any CPU
+		{ED4BFD14-30AE-4A11-A0C8-1847AA91CB9B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{ED4BFD14-30AE-4A11-A0C8-1847AA91CB9B}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{ED4BFD14-30AE-4A11-A0C8-1847AA91CB9B}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{ED4BFD14-30AE-4A11-A0C8-1847AA91CB9B}.Release|Any CPU.Build.0 = Release|Any CPU
+		{B1FABEE0-2F76-46BA-AD62-23646B2011AE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{B1FABEE0-2F76-46BA-AD62-23646B2011AE}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{B1FABEE0-2F76-46BA-AD62-23646B2011AE}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{B1FABEE0-2F76-46BA-AD62-23646B2011AE}.Release|Any CPU.Build.0 = Release|Any CPU
 	EndGlobalSection
 	GlobalSection(SolutionProperties) = preSolution
 		HideSolutionNode = FALSE