diff options
Diffstat (limited to 'samples/SimpleCalculatorSystem')
10 files changed, 448 insertions, 0 deletions
diff --git a/samples/SimpleCalculatorSystem/CalculatorClient/CalculatorClient.csproj b/samples/SimpleCalculatorSystem/CalculatorClient/CalculatorClient.csproj new file mode 100644 index 0000000..d9b1a48 --- /dev/null +++ b/samples/SimpleCalculatorSystem/CalculatorClient/CalculatorClient.csproj @@ -0,0 +1,67 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> + <Platform Condition=" '$(Platform)' == '' ">x86</Platform> + <ProductVersion>8.0.30703</ProductVersion> + <SchemaVersion>2.0</SchemaVersion> + <ProjectGuid>{6DD6F730-E353-4B0C-9655-8370A943A7BF}</ProjectGuid> + <OutputType>Exe</OutputType> + <AppDesignerFolder>Properties</AppDesignerFolder> + <RootNamespace>CalculatorClient</RootNamespace> + <AssemblyName>CalculatorClient</AssemblyName> + <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> + <TargetFrameworkProfile>Client</TargetFrameworkProfile> + <FileAlignment>512</FileAlignment> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> + <PlatformTarget>x86</PlatformTarget> + <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|x86' "> + <PlatformTarget>x86</PlatformTarget> + <DebugType>pdbonly</DebugType> + <Optimize>true</Optimize> + <OutputPath>bin\Release\</OutputPath> + <DefineConstants>TRACE</DefineConstants> + <ErrorReport>prompt</ErrorReport> + <WarningLevel>4</WarningLevel> + </PropertyGroup> + <ItemGroup> + <Reference Include="Scs, Version=1.0.0.1, Culture=neutral, processorArchitecture=MSIL"> + <SpecificVersion>False</SpecificVersion> + <HintPath>..\..\..\Scs-Binaries\Scs.dll</HintPath> + </Reference> + <Reference Include="System" /> + <Reference Include="System.Core" /> + <Reference Include="System.Xml.Linq" /> + <Reference Include="System.Data.DataSetExtensions" /> + <Reference Include="Microsoft.CSharp" /> + <Reference Include="System.Data" /> + <Reference Include="System.Xml" /> + </ItemGroup> + <ItemGroup> + <Compile Include="Program.cs" /> + <Compile Include="Properties\AssemblyInfo.cs" /> + </ItemGroup> + <ItemGroup> + <ProjectReference Include="..\CalculatorCommonLib\CalculatorCommonLib.csproj"> + <Project>{6F2D58C9-0395-4048-A304-17304D12BC63}</Project> + <Name>CalculatorCommonLib</Name> + </ProjectReference> + </ItemGroup> + <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> + <!-- To modify your build process, add your task inside one of the targets below and uncomment it. + Other similar extension points exist, see Microsoft.Common.targets. + <Target Name="BeforeBuild"> + </Target> + <Target Name="AfterBuild"> + </Target> + --> +</Project>
\ No newline at end of file diff --git a/samples/SimpleCalculatorSystem/CalculatorClient/Program.cs b/samples/SimpleCalculatorSystem/CalculatorClient/Program.cs new file mode 100644 index 0000000..09b209a --- /dev/null +++ b/samples/SimpleCalculatorSystem/CalculatorClient/Program.cs @@ -0,0 +1,33 @@ +using System; +using CalculatorCommonLib; +using Hik.Communication.Scs.Communication.EndPoints.Tcp; +using Hik.Communication.ScsServices.Client; + +namespace CalculatorClient +{ + class Program + { + static void Main() + { + Console.WriteLine("Press enter to connect to server and call methods..."); + Console.ReadLine(); + + //Create a client that can call methods of Calculator Service that is running on local computer and 10083 TCP port + //Since IScsServiceClient is IDisposible, it closes connection at the end of the using block + using (var client = ScsServiceClientBuilder.CreateClient<ICalculatorService>(new ScsTcpEndPoint("127.0.0.1", 10083))) + { + //Connect to the server + client.Connect(); + + //Call a remote method of server + var division = client.ServiceProxy.Divide(42, 3); + + //Write the result to the screen + Console.WriteLine("Result: " + division); + } + + Console.WriteLine("Press enter to stop client application"); + Console.ReadLine(); + } + } +} diff --git a/samples/SimpleCalculatorSystem/CalculatorClient/Properties/AssemblyInfo.cs b/samples/SimpleCalculatorSystem/CalculatorClient/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..1c1a455 --- /dev/null +++ b/samples/SimpleCalculatorSystem/CalculatorClient/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("CalculatorClient")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft")] +[assembly: AssemblyProduct("CalculatorClient")] +[assembly: AssemblyCopyright("Copyright © Microsoft 2011")] +[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("5712ded0-d09a-4e56-8de4-1d9145854ee5")] + +// 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")] diff --git a/samples/SimpleCalculatorSystem/CalculatorCommonLib/CalculatorCommonLib.csproj b/samples/SimpleCalculatorSystem/CalculatorCommonLib/CalculatorCommonLib.csproj new file mode 100644 index 0000000..90eca61 --- /dev/null +++ b/samples/SimpleCalculatorSystem/CalculatorCommonLib/CalculatorCommonLib.csproj @@ -0,0 +1,58 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> + <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> + <ProductVersion>8.0.30703</ProductVersion> + <SchemaVersion>2.0</SchemaVersion> + <ProjectGuid>{6F2D58C9-0395-4048-A304-17304D12BC63}</ProjectGuid> + <OutputType>Library</OutputType> + <AppDesignerFolder>Properties</AppDesignerFolder> + <RootNamespace>CalculatorCommonLib</RootNamespace> + <AssemblyName>CalculatorCommonLib</AssemblyName> + <TargetFrameworkVersion>v4.0</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> + <Reference Include="Scs, Version=1.0.0.1, Culture=neutral, processorArchitecture=MSIL"> + <SpecificVersion>False</SpecificVersion> + <HintPath>..\..\..\Scs-Binaries\Scs.dll</HintPath> + </Reference> + <Reference Include="System" /> + <Reference Include="System.Core" /> + <Reference Include="System.Xml.Linq" /> + <Reference Include="System.Data.DataSetExtensions" /> + <Reference Include="Microsoft.CSharp" /> + <Reference Include="System.Data" /> + <Reference Include="System.Xml" /> + </ItemGroup> + <ItemGroup> + <Compile Include="ICalculatorService.cs" /> + <Compile Include="Properties\AssemblyInfo.cs" /> + </ItemGroup> + <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> + <!-- To modify your build process, add your task inside one of the targets below and uncomment it. + Other similar extension points exist, see Microsoft.Common.targets. + <Target Name="BeforeBuild"> + </Target> + <Target Name="AfterBuild"> + </Target> + --> +</Project>
\ No newline at end of file diff --git a/samples/SimpleCalculatorSystem/CalculatorCommonLib/ICalculatorService.cs b/samples/SimpleCalculatorSystem/CalculatorCommonLib/ICalculatorService.cs new file mode 100644 index 0000000..c04013f --- /dev/null +++ b/samples/SimpleCalculatorSystem/CalculatorCommonLib/ICalculatorService.cs @@ -0,0 +1,15 @@ +using Hik.Communication.ScsServices.Service; + +namespace CalculatorCommonLib +{ + /// <summary> + /// This interface defines methods of calculator service that can be called by clients. + /// </summary> + [ScsService] + public interface ICalculatorService + { + int Add(int number1, int number2); + + double Divide(double number1, double number2); + } +} diff --git a/samples/SimpleCalculatorSystem/CalculatorCommonLib/Properties/AssemblyInfo.cs b/samples/SimpleCalculatorSystem/CalculatorCommonLib/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..4848095 --- /dev/null +++ b/samples/SimpleCalculatorSystem/CalculatorCommonLib/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("CalculatorCommonLib")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft")] +[assembly: AssemblyProduct("CalculatorCommonLib")] +[assembly: AssemblyCopyright("Copyright © Microsoft 2011")] +[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("8a08ef54-dde6-4f7a-8656-57518c5098ea")] + +// 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")] diff --git a/samples/SimpleCalculatorSystem/CalculatorServer/CalculatorServer.csproj b/samples/SimpleCalculatorSystem/CalculatorServer/CalculatorServer.csproj new file mode 100644 index 0000000..259762d --- /dev/null +++ b/samples/SimpleCalculatorSystem/CalculatorServer/CalculatorServer.csproj @@ -0,0 +1,67 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> + <Platform Condition=" '$(Platform)' == '' ">x86</Platform> + <ProductVersion>8.0.30703</ProductVersion> + <SchemaVersion>2.0</SchemaVersion> + <ProjectGuid>{1BB6B428-E4C3-467F-824F-1DB84E310FF2}</ProjectGuid> + <OutputType>Exe</OutputType> + <AppDesignerFolder>Properties</AppDesignerFolder> + <RootNamespace>CalculatorServer</RootNamespace> + <AssemblyName>CalculatorServer</AssemblyName> + <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> + <TargetFrameworkProfile>Client</TargetFrameworkProfile> + <FileAlignment>512</FileAlignment> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' "> + <PlatformTarget>x86</PlatformTarget> + <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|x86' "> + <PlatformTarget>x86</PlatformTarget> + <DebugType>pdbonly</DebugType> + <Optimize>true</Optimize> + <OutputPath>bin\Release\</OutputPath> + <DefineConstants>TRACE</DefineConstants> + <ErrorReport>prompt</ErrorReport> + <WarningLevel>4</WarningLevel> + </PropertyGroup> + <ItemGroup> + <Reference Include="Scs, Version=1.0.0.1, Culture=neutral, processorArchitecture=MSIL"> + <SpecificVersion>False</SpecificVersion> + <HintPath>..\..\..\Scs-Binaries\Scs.dll</HintPath> + </Reference> + <Reference Include="System" /> + <Reference Include="System.Core" /> + <Reference Include="System.Xml.Linq" /> + <Reference Include="System.Data.DataSetExtensions" /> + <Reference Include="Microsoft.CSharp" /> + <Reference Include="System.Data" /> + <Reference Include="System.Xml" /> + </ItemGroup> + <ItemGroup> + <Compile Include="Program.cs" /> + <Compile Include="Properties\AssemblyInfo.cs" /> + </ItemGroup> + <ItemGroup> + <ProjectReference Include="..\CalculatorCommonLib\CalculatorCommonLib.csproj"> + <Project>{6F2D58C9-0395-4048-A304-17304D12BC63}</Project> + <Name>CalculatorCommonLib</Name> + </ProjectReference> + </ItemGroup> + <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> + <!-- To modify your build process, add your task inside one of the targets below and uncomment it. + Other similar extension points exist, see Microsoft.Common.targets. + <Target Name="BeforeBuild"> + </Target> + <Target Name="AfterBuild"> + </Target> + --> +</Project>
\ No newline at end of file diff --git a/samples/SimpleCalculatorSystem/CalculatorServer/Program.cs b/samples/SimpleCalculatorSystem/CalculatorServer/Program.cs new file mode 100644 index 0000000..8ec07ef --- /dev/null +++ b/samples/SimpleCalculatorSystem/CalculatorServer/Program.cs @@ -0,0 +1,46 @@ +using System; +using CalculatorCommonLib; +using Hik.Communication.Scs.Communication.EndPoints.Tcp; +using Hik.Communication.ScsServices.Service; + +namespace CalculatorServer +{ + class Program + { + static void Main() + { + //Create a service application that runs on 10083 TCP port + var serviceApplication = ScsServiceBuilder.CreateService(new ScsTcpEndPoint(10083)); + + //Create a CalculatorService and add it to service application + serviceApplication.AddService<ICalculatorService, CalculatorService>(new CalculatorService()); + + //Start service application + serviceApplication.Start(); + + Console.WriteLine("Calculator service is started. Press enter to stop..."); + Console.ReadLine(); + + //Stop service application + serviceApplication.Stop(); + } + } + + public class CalculatorService : ScsService, ICalculatorService + { + public int Add(int number1, int number2) + { + return number1 + number2; + } + + public double Divide(double number1, double number2) + { + if(number2 == 0.0) + { + throw new DivideByZeroException("number2 can not be zero!"); + } + + return number1 / number2; + } + } +} diff --git a/samples/SimpleCalculatorSystem/CalculatorServer/Properties/AssemblyInfo.cs b/samples/SimpleCalculatorSystem/CalculatorServer/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..46a9398 --- /dev/null +++ b/samples/SimpleCalculatorSystem/CalculatorServer/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("CalculatorServer")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft")] +[assembly: AssemblyProduct("CalculatorServer")] +[assembly: AssemblyCopyright("Copyright © Microsoft 2011")] +[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("fc3f0ecf-46ea-437e-a535-82dffae3dc9e")] + +// 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")] diff --git a/samples/SimpleCalculatorSystem/SimpleCalculatorSystem.sln b/samples/SimpleCalculatorSystem/SimpleCalculatorSystem.sln new file mode 100644 index 0000000..236647f --- /dev/null +++ b/samples/SimpleCalculatorSystem/SimpleCalculatorSystem.sln @@ -0,0 +1,54 @@ + +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CalculatorServer", "CalculatorServer\CalculatorServer.csproj", "{1BB6B428-E4C3-467F-824F-1DB84E310FF2}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CalculatorCommonLib", "CalculatorCommonLib\CalculatorCommonLib.csproj", "{6F2D58C9-0395-4048-A304-17304D12BC63}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CalculatorClient", "CalculatorClient\CalculatorClient.csproj", "{6DD6F730-E353-4B0C-9655-8370A943A7BF}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|Mixed Platforms = Debug|Mixed Platforms + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|Mixed Platforms = Release|Mixed Platforms + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {1BB6B428-E4C3-467F-824F-1DB84E310FF2}.Debug|Any CPU.ActiveCfg = Debug|x86 + {1BB6B428-E4C3-467F-824F-1DB84E310FF2}.Debug|Mixed Platforms.ActiveCfg = Debug|x86 + {1BB6B428-E4C3-467F-824F-1DB84E310FF2}.Debug|Mixed Platforms.Build.0 = Debug|x86 + {1BB6B428-E4C3-467F-824F-1DB84E310FF2}.Debug|x86.ActiveCfg = Debug|x86 + {1BB6B428-E4C3-467F-824F-1DB84E310FF2}.Debug|x86.Build.0 = Debug|x86 + {1BB6B428-E4C3-467F-824F-1DB84E310FF2}.Release|Any CPU.ActiveCfg = Release|x86 + {1BB6B428-E4C3-467F-824F-1DB84E310FF2}.Release|Mixed Platforms.ActiveCfg = Release|x86 + {1BB6B428-E4C3-467F-824F-1DB84E310FF2}.Release|Mixed Platforms.Build.0 = Release|x86 + {1BB6B428-E4C3-467F-824F-1DB84E310FF2}.Release|x86.ActiveCfg = Release|x86 + {1BB6B428-E4C3-467F-824F-1DB84E310FF2}.Release|x86.Build.0 = Release|x86 + {6F2D58C9-0395-4048-A304-17304D12BC63}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6F2D58C9-0395-4048-A304-17304D12BC63}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6F2D58C9-0395-4048-A304-17304D12BC63}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {6F2D58C9-0395-4048-A304-17304D12BC63}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {6F2D58C9-0395-4048-A304-17304D12BC63}.Debug|x86.ActiveCfg = Debug|Any CPU + {6F2D58C9-0395-4048-A304-17304D12BC63}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6F2D58C9-0395-4048-A304-17304D12BC63}.Release|Any CPU.Build.0 = Release|Any CPU + {6F2D58C9-0395-4048-A304-17304D12BC63}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {6F2D58C9-0395-4048-A304-17304D12BC63}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {6F2D58C9-0395-4048-A304-17304D12BC63}.Release|x86.ActiveCfg = Release|Any CPU + {6DD6F730-E353-4B0C-9655-8370A943A7BF}.Debug|Any CPU.ActiveCfg = Debug|x86 + {6DD6F730-E353-4B0C-9655-8370A943A7BF}.Debug|Mixed Platforms.ActiveCfg = Debug|x86 + {6DD6F730-E353-4B0C-9655-8370A943A7BF}.Debug|Mixed Platforms.Build.0 = Debug|x86 + {6DD6F730-E353-4B0C-9655-8370A943A7BF}.Debug|x86.ActiveCfg = Debug|x86 + {6DD6F730-E353-4B0C-9655-8370A943A7BF}.Debug|x86.Build.0 = Debug|x86 + {6DD6F730-E353-4B0C-9655-8370A943A7BF}.Release|Any CPU.ActiveCfg = Release|x86 + {6DD6F730-E353-4B0C-9655-8370A943A7BF}.Release|Mixed Platforms.ActiveCfg = Release|x86 + {6DD6F730-E353-4B0C-9655-8370A943A7BF}.Release|Mixed Platforms.Build.0 = Release|x86 + {6DD6F730-E353-4B0C-9655-8370A943A7BF}.Release|x86.ActiveCfg = Release|x86 + {6DD6F730-E353-4B0C-9655-8370A943A7BF}.Release|x86.Build.0 = Release|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal |