Added: SmarterMail 10 Implementation
This commit is contained in:
parent
9cff06039f
commit
f20867903e
11 changed files with 25452 additions and 0 deletions
|
@ -0,0 +1,59 @@
|
|||
// Copyright (c) 2012, Outercurve Foundation.
|
||||
// All rights reserved.
|
||||
//
|
||||
// Redistribution and use in source and binary forms, with or without modification,
|
||||
// are permitted provided that the following conditions are met:
|
||||
//
|
||||
// - Redistributions of source code must retain the above copyright notice, this
|
||||
// list of conditions and the following disclaimer.
|
||||
//
|
||||
// - Redistributions in binary form must reproduce the above copyright notice,
|
||||
// this list of conditions and the following disclaimer in the documentation
|
||||
// and/or other materials provided with the distribution.
|
||||
//
|
||||
// - Neither the name of the Outercurve Foundation nor the names of its
|
||||
// contributors may be used to endorse or promote products derived from this
|
||||
// software without specific prior written permission.
|
||||
//
|
||||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
||||
// ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||
// ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace WebsitePanel.Providers.Mail.SM10.Extensions
|
||||
{
|
||||
public static class MailAccountExtensions
|
||||
{
|
||||
/// <summary>
|
||||
/// Prepares all the necessary parameters to call SetUserSettings web method.
|
||||
/// </summary>
|
||||
/// <param name="mailbox"></param>
|
||||
/// <returns></returns>
|
||||
public static string[] PrepareSetRequestedUserSettingsWebMethodParams(this MailAccount mailbox)
|
||||
{
|
||||
return new string[] {
|
||||
"isenabled=" + mailbox.Enabled.ToString(),
|
||||
// Fix for incorrect mailbox size
|
||||
"maxsize=" + (mailbox.UnlimitedSize ? "0" : mailbox.MaxMailboxSize.ToString()),
|
||||
"lockpassword=" + mailbox.PasswordLocked.ToString(),
|
||||
"passwordlocked" + mailbox.PasswordLocked.ToString(),
|
||||
"replytoaddress=" + (mailbox.ReplyTo != null ? mailbox.ReplyTo : ""),
|
||||
"signature=" + (mailbox.Signature != null ? mailbox.Signature : ""),
|
||||
"spamforwardoption=none",
|
||||
// Set UTF8 as default encoding for webmail
|
||||
"textencoding=65001"
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
|
@ -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("WebsitePanel.Providers.Mail.SmarterMail10")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("WebsitePanel.Providers.Mail.SmarterMail10")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2012")]
|
||||
[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("9988b1a8-db89-44de-b440-b07def74cc25")]
|
||||
|
||||
// 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")]
|
71
WebsitePanel/Sources/WebsitePanel.Providers.Mail.SmarterMail10/Properties/Resources.Designer.cs
generated
Normal file
71
WebsitePanel/Sources/WebsitePanel.Providers.Mail.SmarterMail10/Properties/Resources.Designer.cs
generated
Normal file
|
@ -0,0 +1,71 @@
|
|||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.269
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace WebsitePanel.Providers.Mail.SmarterMail10.Properties
|
||||
{
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// A strongly-typed resource class, for looking up localized strings, etc.
|
||||
/// </summary>
|
||||
// This class was auto-generated by the StronglyTypedResourceBuilder
|
||||
// class via a tool like ResGen or Visual Studio.
|
||||
// To add or remove a member, edit your .ResX file then rerun ResGen
|
||||
// with the /str option, or rebuild your VS project.
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
internal class Resources
|
||||
{
|
||||
|
||||
private static global::System.Resources.ResourceManager resourceMan;
|
||||
|
||||
private static global::System.Globalization.CultureInfo resourceCulture;
|
||||
|
||||
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
|
||||
internal Resources()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns the cached ResourceManager instance used by this class.
|
||||
/// </summary>
|
||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||
internal static global::System.Resources.ResourceManager ResourceManager
|
||||
{
|
||||
get
|
||||
{
|
||||
if ((resourceMan == null))
|
||||
{
|
||||
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("WebsitePanel.Providers.Mail.SmarterMail10.Properties.Resources", typeof(Resources).Assembly);
|
||||
resourceMan = temp;
|
||||
}
|
||||
return resourceMan;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Overrides the current thread's CurrentUICulture property for all
|
||||
/// resource lookups using this strongly typed resource class.
|
||||
/// </summary>
|
||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||
internal static global::System.Globalization.CultureInfo Culture
|
||||
{
|
||||
get
|
||||
{
|
||||
return resourceCulture;
|
||||
}
|
||||
set
|
||||
{
|
||||
resourceCulture = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,117 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
</root>
|
30
WebsitePanel/Sources/WebsitePanel.Providers.Mail.SmarterMail10/Properties/Settings.Designer.cs
generated
Normal file
30
WebsitePanel/Sources/WebsitePanel.Providers.Mail.SmarterMail10/Properties/Settings.Designer.cs
generated
Normal file
|
@ -0,0 +1,30 @@
|
|||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.269
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace WebsitePanel.Providers.Mail.SmarterMail10.Properties
|
||||
{
|
||||
|
||||
|
||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")]
|
||||
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
|
||||
{
|
||||
|
||||
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
||||
|
||||
public static Settings Default
|
||||
{
|
||||
get
|
||||
{
|
||||
return defaultInstance;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)">
|
||||
<Profiles>
|
||||
<Profile Name="(Default)" />
|
||||
</Profiles>
|
||||
<Settings />
|
||||
</SettingsFile>
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -0,0 +1,23 @@
|
|||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.269
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
using System.Resources;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
[assembly: AssemblyCompany("Outercurve Foundation")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2012 Outercurve Foundation.")]
|
||||
[assembly: AssemblyVersion("1.2.2.0")]
|
||||
[assembly: AssemblyFileVersion("1.2.2.1")]
|
||||
[assembly: AssemblyInformationalVersion("1.2.2")]
|
||||
|
||||
|
|
@ -0,0 +1,104 @@
|
|||
<?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>{ADEAADF8-62E6-4AA9-9E0D-A8E552A2A85A}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>WebsitePanel.Providers.Mail</RootNamespace>
|
||||
<AssemblyName>WebsitePanel.Providers.Mail.SmarterMail10</AssemblyName>
|
||||
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<PublishUrl>publish\</PublishUrl>
|
||||
<Install>true</Install>
|
||||
<InstallFrom>Disk</InstallFrom>
|
||||
<UpdateEnabled>false</UpdateEnabled>
|
||||
<UpdateMode>Foreground</UpdateMode>
|
||||
<UpdateInterval>7</UpdateInterval>
|
||||
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
|
||||
<UpdatePeriodically>false</UpdatePeriodically>
|
||||
<UpdateRequired>false</UpdateRequired>
|
||||
<MapFileExtensions>true</MapFileExtensions>
|
||||
<ApplicationRevision>0</ApplicationRevision>
|
||||
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
|
||||
<IsWebBootstrapper>false</IsWebBootstrapper>
|
||||
<UseApplicationTrust>false</UseApplicationTrust>
|
||||
<BootstrapperEnabled>true</BootstrapperEnabled>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>..\WebsitePanel.Server\bin\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<WarningsAsErrors>618</WarningsAsErrors>
|
||||
</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>
|
||||
<PropertyGroup>
|
||||
<StartupObject />
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Web.Services" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="Properties\" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
|
||||
<Visible>False</Visible>
|
||||
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
|
||||
<Install>false</Install>
|
||||
</BootstrapperPackage>
|
||||
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
|
||||
<Visible>False</Visible>
|
||||
<ProductName>.NET Framework 3.5 SP1</ProductName>
|
||||
<Install>true</Install>
|
||||
</BootstrapperPackage>
|
||||
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
|
||||
<Visible>False</Visible>
|
||||
<ProductName>Windows Installer 3.1</ProductName>
|
||||
<Install>true</Install>
|
||||
</BootstrapperPackage>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Extensions.cs" />
|
||||
<Compile Include="SmarterMail10.cs" />
|
||||
<Compile Include="SmarterMail10Proxies.cs" />
|
||||
<Compile Include="VersionInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\WebsitePanel.Providers.Base\WebsitePanel.Providers.Base.csproj">
|
||||
<Project>{684C932A-6C75-46AC-A327-F3689D89EB42}</Project>
|
||||
<Name>WebsitePanel.Providers.Base</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\WebsitePanel.Server.Utils\WebsitePanel.Server.Utils.csproj">
|
||||
<Project>{E91E52F3-9555-4D00-B577-2B1DBDD87CA7}</Project>
|
||||
<Name>WebsitePanel.Server.Utils</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>
|
|
@ -103,192 +103,478 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebsitePanel.Server.WPIServ
|
|||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebsitePanel.Server.WPIServiceContract", "WebsitePanel.Server.WPIServiceContract\WebsitePanel.Server.WPIServiceContract.csproj", "{736FA0F0-ECA3-416E-B299-85CC425FFF44}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebsitePanel.Providers.Mail.SmarterMail10", "WebsitePanel.Providers.Mail.SmarterMail10\WebsitePanel.Providers.Mail.SmarterMail10.csproj", "{ADEAADF8-62E6-4AA9-9E0D-A8E552A2A85A}"
|
||||
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
|
||||
{38C6047C-E447-4CC2-891F-ABE54D4659F3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{38C6047C-E447-4CC2-891F-ABE54D4659F3}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{38C6047C-E447-4CC2-891F-ABE54D4659F3}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{38C6047C-E447-4CC2-891F-ABE54D4659F3}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{38C6047C-E447-4CC2-891F-ABE54D4659F3}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{38C6047C-E447-4CC2-891F-ABE54D4659F3}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{38C6047C-E447-4CC2-891F-ABE54D4659F3}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{38C6047C-E447-4CC2-891F-ABE54D4659F3}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{38C6047C-E447-4CC2-891F-ABE54D4659F3}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{38C6047C-E447-4CC2-891F-ABE54D4659F3}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{684C932A-6C75-46AC-A327-F3689D89EB42}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{684C932A-6C75-46AC-A327-F3689D89EB42}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{684C932A-6C75-46AC-A327-F3689D89EB42}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{684C932A-6C75-46AC-A327-F3689D89EB42}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{684C932A-6C75-46AC-A327-F3689D89EB42}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{684C932A-6C75-46AC-A327-F3689D89EB42}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{684C932A-6C75-46AC-A327-F3689D89EB42}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{684C932A-6C75-46AC-A327-F3689D89EB42}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{684C932A-6C75-46AC-A327-F3689D89EB42}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{684C932A-6C75-46AC-A327-F3689D89EB42}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{E91E52F3-9555-4D00-B577-2B1DBDD87CA7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{E91E52F3-9555-4D00-B577-2B1DBDD87CA7}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{E91E52F3-9555-4D00-B577-2B1DBDD87CA7}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{E91E52F3-9555-4D00-B577-2B1DBDD87CA7}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{E91E52F3-9555-4D00-B577-2B1DBDD87CA7}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{E91E52F3-9555-4D00-B577-2B1DBDD87CA7}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{E91E52F3-9555-4D00-B577-2B1DBDD87CA7}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{E91E52F3-9555-4D00-B577-2B1DBDD87CA7}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{E91E52F3-9555-4D00-B577-2B1DBDD87CA7}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{E91E52F3-9555-4D00-B577-2B1DBDD87CA7}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{990C4A2A-34A5-4BE0-9546-E10ABDFFFD0E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{990C4A2A-34A5-4BE0-9546-E10ABDFFFD0E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{990C4A2A-34A5-4BE0-9546-E10ABDFFFD0E}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{990C4A2A-34A5-4BE0-9546-E10ABDFFFD0E}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{990C4A2A-34A5-4BE0-9546-E10ABDFFFD0E}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{990C4A2A-34A5-4BE0-9546-E10ABDFFFD0E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{990C4A2A-34A5-4BE0-9546-E10ABDFFFD0E}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{990C4A2A-34A5-4BE0-9546-E10ABDFFFD0E}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{990C4A2A-34A5-4BE0-9546-E10ABDFFFD0E}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{990C4A2A-34A5-4BE0-9546-E10ABDFFFD0E}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{3744791D-C7B5-4818-8521-78EB5261CB34}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{3744791D-C7B5-4818-8521-78EB5261CB34}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{3744791D-C7B5-4818-8521-78EB5261CB34}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{3744791D-C7B5-4818-8521-78EB5261CB34}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{3744791D-C7B5-4818-8521-78EB5261CB34}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{3744791D-C7B5-4818-8521-78EB5261CB34}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{3744791D-C7B5-4818-8521-78EB5261CB34}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{3744791D-C7B5-4818-8521-78EB5261CB34}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{3744791D-C7B5-4818-8521-78EB5261CB34}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{3744791D-C7B5-4818-8521-78EB5261CB34}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{1C26EBB3-E92E-48A5-B1FB-3AED9D5B9D74}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{1C26EBB3-E92E-48A5-B1FB-3AED9D5B9D74}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{1C26EBB3-E92E-48A5-B1FB-3AED9D5B9D74}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{1C26EBB3-E92E-48A5-B1FB-3AED9D5B9D74}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{1C26EBB3-E92E-48A5-B1FB-3AED9D5B9D74}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{1C26EBB3-E92E-48A5-B1FB-3AED9D5B9D74}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{1C26EBB3-E92E-48A5-B1FB-3AED9D5B9D74}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{1C26EBB3-E92E-48A5-B1FB-3AED9D5B9D74}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{1C26EBB3-E92E-48A5-B1FB-3AED9D5B9D74}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{1C26EBB3-E92E-48A5-B1FB-3AED9D5B9D74}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{899B3048-46BE-4C4D-9D41-0043C8B0D11E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{899B3048-46BE-4C4D-9D41-0043C8B0D11E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{899B3048-46BE-4C4D-9D41-0043C8B0D11E}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{899B3048-46BE-4C4D-9D41-0043C8B0D11E}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{899B3048-46BE-4C4D-9D41-0043C8B0D11E}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{899B3048-46BE-4C4D-9D41-0043C8B0D11E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{899B3048-46BE-4C4D-9D41-0043C8B0D11E}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{899B3048-46BE-4C4D-9D41-0043C8B0D11E}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{899B3048-46BE-4C4D-9D41-0043C8B0D11E}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{899B3048-46BE-4C4D-9D41-0043C8B0D11E}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{297C61C5-ECCE-49DE-B742-6BDA00B21B89}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{297C61C5-ECCE-49DE-B742-6BDA00B21B89}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{297C61C5-ECCE-49DE-B742-6BDA00B21B89}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{297C61C5-ECCE-49DE-B742-6BDA00B21B89}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{297C61C5-ECCE-49DE-B742-6BDA00B21B89}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{297C61C5-ECCE-49DE-B742-6BDA00B21B89}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{297C61C5-ECCE-49DE-B742-6BDA00B21B89}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{297C61C5-ECCE-49DE-B742-6BDA00B21B89}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{297C61C5-ECCE-49DE-B742-6BDA00B21B89}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{297C61C5-ECCE-49DE-B742-6BDA00B21B89}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{3148C2B2-8002-4FBE-9665-C65A83FA5F14}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{3148C2B2-8002-4FBE-9665-C65A83FA5F14}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{3148C2B2-8002-4FBE-9665-C65A83FA5F14}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{3148C2B2-8002-4FBE-9665-C65A83FA5F14}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{3148C2B2-8002-4FBE-9665-C65A83FA5F14}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{3148C2B2-8002-4FBE-9665-C65A83FA5F14}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{3148C2B2-8002-4FBE-9665-C65A83FA5F14}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{3148C2B2-8002-4FBE-9665-C65A83FA5F14}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{3148C2B2-8002-4FBE-9665-C65A83FA5F14}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{3148C2B2-8002-4FBE-9665-C65A83FA5F14}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{9BE0317D-E42E-4FF6-9A87-8C801F046EA1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{9BE0317D-E42E-4FF6-9A87-8C801F046EA1}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{9BE0317D-E42E-4FF6-9A87-8C801F046EA1}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{9BE0317D-E42E-4FF6-9A87-8C801F046EA1}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{9BE0317D-E42E-4FF6-9A87-8C801F046EA1}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{9BE0317D-E42E-4FF6-9A87-8C801F046EA1}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{9BE0317D-E42E-4FF6-9A87-8C801F046EA1}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{9BE0317D-E42E-4FF6-9A87-8C801F046EA1}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{9BE0317D-E42E-4FF6-9A87-8C801F046EA1}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{9BE0317D-E42E-4FF6-9A87-8C801F046EA1}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{54D5BDBC-42FC-41C3-902A-3583B9B496F4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{54D5BDBC-42FC-41C3-902A-3583B9B496F4}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{54D5BDBC-42FC-41C3-902A-3583B9B496F4}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{54D5BDBC-42FC-41C3-902A-3583B9B496F4}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{54D5BDBC-42FC-41C3-902A-3583B9B496F4}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{54D5BDBC-42FC-41C3-902A-3583B9B496F4}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{54D5BDBC-42FC-41C3-902A-3583B9B496F4}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{54D5BDBC-42FC-41C3-902A-3583B9B496F4}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{54D5BDBC-42FC-41C3-902A-3583B9B496F4}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{54D5BDBC-42FC-41C3-902A-3583B9B496F4}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{5C98FE44-B6EF-4460-9530-E40D07846929}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{5C98FE44-B6EF-4460-9530-E40D07846929}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{5C98FE44-B6EF-4460-9530-E40D07846929}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{5C98FE44-B6EF-4460-9530-E40D07846929}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{5C98FE44-B6EF-4460-9530-E40D07846929}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{5C98FE44-B6EF-4460-9530-E40D07846929}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{5C98FE44-B6EF-4460-9530-E40D07846929}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{5C98FE44-B6EF-4460-9530-E40D07846929}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{5C98FE44-B6EF-4460-9530-E40D07846929}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{5C98FE44-B6EF-4460-9530-E40D07846929}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{3B31793D-7CA6-40C1-BC3B-EE85F414C626}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{3B31793D-7CA6-40C1-BC3B-EE85F414C626}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{3B31793D-7CA6-40C1-BC3B-EE85F414C626}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{3B31793D-7CA6-40C1-BC3B-EE85F414C626}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{3B31793D-7CA6-40C1-BC3B-EE85F414C626}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{3B31793D-7CA6-40C1-BC3B-EE85F414C626}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{3B31793D-7CA6-40C1-BC3B-EE85F414C626}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{3B31793D-7CA6-40C1-BC3B-EE85F414C626}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{3B31793D-7CA6-40C1-BC3B-EE85F414C626}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{3B31793D-7CA6-40C1-BC3B-EE85F414C626}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{B8965821-B64E-4A1B-9B72-E089B3D58861}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{B8965821-B64E-4A1B-9B72-E089B3D58861}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{B8965821-B64E-4A1B-9B72-E089B3D58861}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{B8965821-B64E-4A1B-9B72-E089B3D58861}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{B8965821-B64E-4A1B-9B72-E089B3D58861}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{B8965821-B64E-4A1B-9B72-E089B3D58861}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{B8965821-B64E-4A1B-9B72-E089B3D58861}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{B8965821-B64E-4A1B-9B72-E089B3D58861}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{B8965821-B64E-4A1B-9B72-E089B3D58861}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{B8965821-B64E-4A1B-9B72-E089B3D58861}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{D6EEEE68-CE10-44C2-84FD-3E37E565BE9C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{D6EEEE68-CE10-44C2-84FD-3E37E565BE9C}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{D6EEEE68-CE10-44C2-84FD-3E37E565BE9C}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{D6EEEE68-CE10-44C2-84FD-3E37E565BE9C}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{D6EEEE68-CE10-44C2-84FD-3E37E565BE9C}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{D6EEEE68-CE10-44C2-84FD-3E37E565BE9C}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{D6EEEE68-CE10-44C2-84FD-3E37E565BE9C}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{D6EEEE68-CE10-44C2-84FD-3E37E565BE9C}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{D6EEEE68-CE10-44C2-84FD-3E37E565BE9C}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{D6EEEE68-CE10-44C2-84FD-3E37E565BE9C}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{D640BF9A-C738-4C02-A8D9-0441D5AAAD74}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{D640BF9A-C738-4C02-A8D9-0441D5AAAD74}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{D640BF9A-C738-4C02-A8D9-0441D5AAAD74}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{D640BF9A-C738-4C02-A8D9-0441D5AAAD74}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{D640BF9A-C738-4C02-A8D9-0441D5AAAD74}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{D640BF9A-C738-4C02-A8D9-0441D5AAAD74}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{D640BF9A-C738-4C02-A8D9-0441D5AAAD74}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{D640BF9A-C738-4C02-A8D9-0441D5AAAD74}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{D640BF9A-C738-4C02-A8D9-0441D5AAAD74}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{D640BF9A-C738-4C02-A8D9-0441D5AAAD74}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{51721D68-DBCB-4796-8455-004F1A43CB81}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{51721D68-DBCB-4796-8455-004F1A43CB81}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{51721D68-DBCB-4796-8455-004F1A43CB81}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{51721D68-DBCB-4796-8455-004F1A43CB81}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{51721D68-DBCB-4796-8455-004F1A43CB81}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{51721D68-DBCB-4796-8455-004F1A43CB81}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{51721D68-DBCB-4796-8455-004F1A43CB81}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{51721D68-DBCB-4796-8455-004F1A43CB81}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{51721D68-DBCB-4796-8455-004F1A43CB81}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{51721D68-DBCB-4796-8455-004F1A43CB81}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{2FA82B71-B32A-47DE-A17B-40DE08D0256D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{2FA82B71-B32A-47DE-A17B-40DE08D0256D}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{2FA82B71-B32A-47DE-A17B-40DE08D0256D}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{2FA82B71-B32A-47DE-A17B-40DE08D0256D}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{2FA82B71-B32A-47DE-A17B-40DE08D0256D}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{2FA82B71-B32A-47DE-A17B-40DE08D0256D}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{2FA82B71-B32A-47DE-A17B-40DE08D0256D}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{2FA82B71-B32A-47DE-A17B-40DE08D0256D}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{2FA82B71-B32A-47DE-A17B-40DE08D0256D}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{2FA82B71-B32A-47DE-A17B-40DE08D0256D}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{7980CF32-62ED-4BA1-9CAE-8EE7BD164719}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{7980CF32-62ED-4BA1-9CAE-8EE7BD164719}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{7980CF32-62ED-4BA1-9CAE-8EE7BD164719}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{7980CF32-62ED-4BA1-9CAE-8EE7BD164719}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{7980CF32-62ED-4BA1-9CAE-8EE7BD164719}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{7980CF32-62ED-4BA1-9CAE-8EE7BD164719}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{7980CF32-62ED-4BA1-9CAE-8EE7BD164719}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{7980CF32-62ED-4BA1-9CAE-8EE7BD164719}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{7980CF32-62ED-4BA1-9CAE-8EE7BD164719}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{7980CF32-62ED-4BA1-9CAE-8EE7BD164719}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{54EE4293-6CCB-4859-8B76-90205F7B35A1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{54EE4293-6CCB-4859-8B76-90205F7B35A1}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{54EE4293-6CCB-4859-8B76-90205F7B35A1}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{54EE4293-6CCB-4859-8B76-90205F7B35A1}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{54EE4293-6CCB-4859-8B76-90205F7B35A1}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{54EE4293-6CCB-4859-8B76-90205F7B35A1}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{54EE4293-6CCB-4859-8B76-90205F7B35A1}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{54EE4293-6CCB-4859-8B76-90205F7B35A1}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{54EE4293-6CCB-4859-8B76-90205F7B35A1}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{54EE4293-6CCB-4859-8B76-90205F7B35A1}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{FCD88E94-349D-4BB2-A726-6E47A4F01DC2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{FCD88E94-349D-4BB2-A726-6E47A4F01DC2}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{FCD88E94-349D-4BB2-A726-6E47A4F01DC2}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{FCD88E94-349D-4BB2-A726-6E47A4F01DC2}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{FCD88E94-349D-4BB2-A726-6E47A4F01DC2}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{FCD88E94-349D-4BB2-A726-6E47A4F01DC2}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{FCD88E94-349D-4BB2-A726-6E47A4F01DC2}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{FCD88E94-349D-4BB2-A726-6E47A4F01DC2}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{FCD88E94-349D-4BB2-A726-6E47A4F01DC2}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{FCD88E94-349D-4BB2-A726-6E47A4F01DC2}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{67EEA793-8621-4AD2-AE1D-4D975A8DA059}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{67EEA793-8621-4AD2-AE1D-4D975A8DA059}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{67EEA793-8621-4AD2-AE1D-4D975A8DA059}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{67EEA793-8621-4AD2-AE1D-4D975A8DA059}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{67EEA793-8621-4AD2-AE1D-4D975A8DA059}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{67EEA793-8621-4AD2-AE1D-4D975A8DA059}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{67EEA793-8621-4AD2-AE1D-4D975A8DA059}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{67EEA793-8621-4AD2-AE1D-4D975A8DA059}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{67EEA793-8621-4AD2-AE1D-4D975A8DA059}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{67EEA793-8621-4AD2-AE1D-4D975A8DA059}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{FE48854E-9332-4E37-A5F2-5DF9DDD740D5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{FE48854E-9332-4E37-A5F2-5DF9DDD740D5}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{FE48854E-9332-4E37-A5F2-5DF9DDD740D5}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{FE48854E-9332-4E37-A5F2-5DF9DDD740D5}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{FE48854E-9332-4E37-A5F2-5DF9DDD740D5}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{FE48854E-9332-4E37-A5F2-5DF9DDD740D5}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{FE48854E-9332-4E37-A5F2-5DF9DDD740D5}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{FE48854E-9332-4E37-A5F2-5DF9DDD740D5}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{FE48854E-9332-4E37-A5F2-5DF9DDD740D5}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{FE48854E-9332-4E37-A5F2-5DF9DDD740D5}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{622E452B-E1EF-4252-8039-A28C2EA25DC1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{622E452B-E1EF-4252-8039-A28C2EA25DC1}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{622E452B-E1EF-4252-8039-A28C2EA25DC1}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{622E452B-E1EF-4252-8039-A28C2EA25DC1}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{622E452B-E1EF-4252-8039-A28C2EA25DC1}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{622E452B-E1EF-4252-8039-A28C2EA25DC1}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{622E452B-E1EF-4252-8039-A28C2EA25DC1}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{622E452B-E1EF-4252-8039-A28C2EA25DC1}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{622E452B-E1EF-4252-8039-A28C2EA25DC1}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{622E452B-E1EF-4252-8039-A28C2EA25DC1}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{67B126AA-56E5-42F7-AC4F-AEE2A7D786F2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{67B126AA-56E5-42F7-AC4F-AEE2A7D786F2}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{67B126AA-56E5-42F7-AC4F-AEE2A7D786F2}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{67B126AA-56E5-42F7-AC4F-AEE2A7D786F2}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{67B126AA-56E5-42F7-AC4F-AEE2A7D786F2}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{67B126AA-56E5-42F7-AC4F-AEE2A7D786F2}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{67B126AA-56E5-42F7-AC4F-AEE2A7D786F2}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{67B126AA-56E5-42F7-AC4F-AEE2A7D786F2}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{67B126AA-56E5-42F7-AC4F-AEE2A7D786F2}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{67B126AA-56E5-42F7-AC4F-AEE2A7D786F2}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{3ACCBEAE-5E1E-43E5-971C-223539832DD8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{3ACCBEAE-5E1E-43E5-971C-223539832DD8}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{3ACCBEAE-5E1E-43E5-971C-223539832DD8}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{3ACCBEAE-5E1E-43E5-971C-223539832DD8}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{3ACCBEAE-5E1E-43E5-971C-223539832DD8}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{3ACCBEAE-5E1E-43E5-971C-223539832DD8}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{3ACCBEAE-5E1E-43E5-971C-223539832DD8}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{3ACCBEAE-5E1E-43E5-971C-223539832DD8}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{3ACCBEAE-5E1E-43E5-971C-223539832DD8}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{3ACCBEAE-5E1E-43E5-971C-223539832DD8}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{41FEC24A-67A2-4BF4-8889-1D5CD0A2B43D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{41FEC24A-67A2-4BF4-8889-1D5CD0A2B43D}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{41FEC24A-67A2-4BF4-8889-1D5CD0A2B43D}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{41FEC24A-67A2-4BF4-8889-1D5CD0A2B43D}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{41FEC24A-67A2-4BF4-8889-1D5CD0A2B43D}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{41FEC24A-67A2-4BF4-8889-1D5CD0A2B43D}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{41FEC24A-67A2-4BF4-8889-1D5CD0A2B43D}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{41FEC24A-67A2-4BF4-8889-1D5CD0A2B43D}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{41FEC24A-67A2-4BF4-8889-1D5CD0A2B43D}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{41FEC24A-67A2-4BF4-8889-1D5CD0A2B43D}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{A2C62A7C-C1F0-41F1-A514-7BD39B70C3BB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{A2C62A7C-C1F0-41F1-A514-7BD39B70C3BB}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{A2C62A7C-C1F0-41F1-A514-7BD39B70C3BB}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{A2C62A7C-C1F0-41F1-A514-7BD39B70C3BB}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{A2C62A7C-C1F0-41F1-A514-7BD39B70C3BB}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{A2C62A7C-C1F0-41F1-A514-7BD39B70C3BB}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{A2C62A7C-C1F0-41F1-A514-7BD39B70C3BB}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{A2C62A7C-C1F0-41F1-A514-7BD39B70C3BB}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{A2C62A7C-C1F0-41F1-A514-7BD39B70C3BB}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{A2C62A7C-C1F0-41F1-A514-7BD39B70C3BB}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{F04CE8DC-6DE1-411A-B912-73ED7EA662D1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{F04CE8DC-6DE1-411A-B912-73ED7EA662D1}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{F04CE8DC-6DE1-411A-B912-73ED7EA662D1}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{F04CE8DC-6DE1-411A-B912-73ED7EA662D1}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{F04CE8DC-6DE1-411A-B912-73ED7EA662D1}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{F04CE8DC-6DE1-411A-B912-73ED7EA662D1}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{F04CE8DC-6DE1-411A-B912-73ED7EA662D1}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{F04CE8DC-6DE1-411A-B912-73ED7EA662D1}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{F04CE8DC-6DE1-411A-B912-73ED7EA662D1}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{F04CE8DC-6DE1-411A-B912-73ED7EA662D1}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{1B9DCE85-C664-49FC-B6E1-86C63CAB88D1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{1B9DCE85-C664-49FC-B6E1-86C63CAB88D1}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{1B9DCE85-C664-49FC-B6E1-86C63CAB88D1}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{1B9DCE85-C664-49FC-B6E1-86C63CAB88D1}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{1B9DCE85-C664-49FC-B6E1-86C63CAB88D1}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{1B9DCE85-C664-49FC-B6E1-86C63CAB88D1}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{1B9DCE85-C664-49FC-B6E1-86C63CAB88D1}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{1B9DCE85-C664-49FC-B6E1-86C63CAB88D1}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{1B9DCE85-C664-49FC-B6E1-86C63CAB88D1}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{1B9DCE85-C664-49FC-B6E1-86C63CAB88D1}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{BED2F43F-2DD8-45CF-AD7C-86799897C575}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{BED2F43F-2DD8-45CF-AD7C-86799897C575}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{BED2F43F-2DD8-45CF-AD7C-86799897C575}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{BED2F43F-2DD8-45CF-AD7C-86799897C575}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{BED2F43F-2DD8-45CF-AD7C-86799897C575}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{BED2F43F-2DD8-45CF-AD7C-86799897C575}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{BED2F43F-2DD8-45CF-AD7C-86799897C575}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{BED2F43F-2DD8-45CF-AD7C-86799897C575}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{BED2F43F-2DD8-45CF-AD7C-86799897C575}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{BED2F43F-2DD8-45CF-AD7C-86799897C575}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{A28BD694-C308-449F-8FD2-F08F3D54ABA0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{A28BD694-C308-449F-8FD2-F08F3D54ABA0}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{A28BD694-C308-449F-8FD2-F08F3D54ABA0}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{A28BD694-C308-449F-8FD2-F08F3D54ABA0}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{A28BD694-C308-449F-8FD2-F08F3D54ABA0}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{A28BD694-C308-449F-8FD2-F08F3D54ABA0}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{A28BD694-C308-449F-8FD2-F08F3D54ABA0}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{A28BD694-C308-449F-8FD2-F08F3D54ABA0}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{A28BD694-C308-449F-8FD2-F08F3D54ABA0}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{A28BD694-C308-449F-8FD2-F08F3D54ABA0}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{7D6D38E3-B445-480F-9CD5-BCDFB22D13BB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{7D6D38E3-B445-480F-9CD5-BCDFB22D13BB}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{7D6D38E3-B445-480F-9CD5-BCDFB22D13BB}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{7D6D38E3-B445-480F-9CD5-BCDFB22D13BB}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{7D6D38E3-B445-480F-9CD5-BCDFB22D13BB}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{7D6D38E3-B445-480F-9CD5-BCDFB22D13BB}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{7D6D38E3-B445-480F-9CD5-BCDFB22D13BB}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{7D6D38E3-B445-480F-9CD5-BCDFB22D13BB}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{7D6D38E3-B445-480F-9CD5-BCDFB22D13BB}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{7D6D38E3-B445-480F-9CD5-BCDFB22D13BB}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{A06DE5E4-4331-47E1-8F46-7B846146B559}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{A06DE5E4-4331-47E1-8F46-7B846146B559}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{A06DE5E4-4331-47E1-8F46-7B846146B559}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{A06DE5E4-4331-47E1-8F46-7B846146B559}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{A06DE5E4-4331-47E1-8F46-7B846146B559}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{A06DE5E4-4331-47E1-8F46-7B846146B559}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{A06DE5E4-4331-47E1-8F46-7B846146B559}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{A06DE5E4-4331-47E1-8F46-7B846146B559}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{A06DE5E4-4331-47E1-8F46-7B846146B559}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{A06DE5E4-4331-47E1-8F46-7B846146B559}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{2B4DC551-AF11-4F85-99DB-3F85917299A4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{2B4DC551-AF11-4F85-99DB-3F85917299A4}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{2B4DC551-AF11-4F85-99DB-3F85917299A4}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{2B4DC551-AF11-4F85-99DB-3F85917299A4}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{2B4DC551-AF11-4F85-99DB-3F85917299A4}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{2B4DC551-AF11-4F85-99DB-3F85917299A4}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{2B4DC551-AF11-4F85-99DB-3F85917299A4}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{2B4DC551-AF11-4F85-99DB-3F85917299A4}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{2B4DC551-AF11-4F85-99DB-3F85917299A4}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{2B4DC551-AF11-4F85-99DB-3F85917299A4}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{D4A435B4-3AB1-4DCB-AF66-68C3ABA759C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{D4A435B4-3AB1-4DCB-AF66-68C3ABA759C2}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{D4A435B4-3AB1-4DCB-AF66-68C3ABA759C2}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{D4A435B4-3AB1-4DCB-AF66-68C3ABA759C2}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{D4A435B4-3AB1-4DCB-AF66-68C3ABA759C2}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{D4A435B4-3AB1-4DCB-AF66-68C3ABA759C2}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{D4A435B4-3AB1-4DCB-AF66-68C3ABA759C2}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{D4A435B4-3AB1-4DCB-AF66-68C3ABA759C2}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{D4A435B4-3AB1-4DCB-AF66-68C3ABA759C2}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{D4A435B4-3AB1-4DCB-AF66-68C3ABA759C2}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{431A94E2-28A3-43D9-8529-31F859C323B6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{431A94E2-28A3-43D9-8529-31F859C323B6}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{431A94E2-28A3-43D9-8529-31F859C323B6}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{431A94E2-28A3-43D9-8529-31F859C323B6}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{431A94E2-28A3-43D9-8529-31F859C323B6}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{431A94E2-28A3-43D9-8529-31F859C323B6}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{431A94E2-28A3-43D9-8529-31F859C323B6}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{431A94E2-28A3-43D9-8529-31F859C323B6}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{431A94E2-28A3-43D9-8529-31F859C323B6}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{431A94E2-28A3-43D9-8529-31F859C323B6}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{88E9734F-2066-4674-AA5B-F1A772436F04}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{88E9734F-2066-4674-AA5B-F1A772436F04}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{88E9734F-2066-4674-AA5B-F1A772436F04}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{88E9734F-2066-4674-AA5B-F1A772436F04}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{88E9734F-2066-4674-AA5B-F1A772436F04}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{88E9734F-2066-4674-AA5B-F1A772436F04}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{88E9734F-2066-4674-AA5B-F1A772436F04}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{88E9734F-2066-4674-AA5B-F1A772436F04}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{88E9734F-2066-4674-AA5B-F1A772436F04}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{88E9734F-2066-4674-AA5B-F1A772436F04}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{7105A714-FF61-46B2-A16E-F4CBAD71BF02}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{7105A714-FF61-46B2-A16E-F4CBAD71BF02}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{7105A714-FF61-46B2-A16E-F4CBAD71BF02}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{7105A714-FF61-46B2-A16E-F4CBAD71BF02}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{7105A714-FF61-46B2-A16E-F4CBAD71BF02}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{7105A714-FF61-46B2-A16E-F4CBAD71BF02}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{7105A714-FF61-46B2-A16E-F4CBAD71BF02}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{7105A714-FF61-46B2-A16E-F4CBAD71BF02}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{7105A714-FF61-46B2-A16E-F4CBAD71BF02}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{7105A714-FF61-46B2-A16E-F4CBAD71BF02}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{8F644D50-D602-4AD3-8EB0-CA3C3676B18D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{8F644D50-D602-4AD3-8EB0-CA3C3676B18D}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{8F644D50-D602-4AD3-8EB0-CA3C3676B18D}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{8F644D50-D602-4AD3-8EB0-CA3C3676B18D}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{8F644D50-D602-4AD3-8EB0-CA3C3676B18D}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{8F644D50-D602-4AD3-8EB0-CA3C3676B18D}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{8F644D50-D602-4AD3-8EB0-CA3C3676B18D}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{8F644D50-D602-4AD3-8EB0-CA3C3676B18D}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{8F644D50-D602-4AD3-8EB0-CA3C3676B18D}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{8F644D50-D602-4AD3-8EB0-CA3C3676B18D}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{FB773A2C-1CD3-4D76-9C4F-B6B7EB9E479C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{FB773A2C-1CD3-4D76-9C4F-B6B7EB9E479C}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{FB773A2C-1CD3-4D76-9C4F-B6B7EB9E479C}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{FB773A2C-1CD3-4D76-9C4F-B6B7EB9E479C}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{FB773A2C-1CD3-4D76-9C4F-B6B7EB9E479C}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{FB773A2C-1CD3-4D76-9C4F-B6B7EB9E479C}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{FB773A2C-1CD3-4D76-9C4F-B6B7EB9E479C}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{FB773A2C-1CD3-4D76-9C4F-B6B7EB9E479C}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{FB773A2C-1CD3-4D76-9C4F-B6B7EB9E479C}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{FB773A2C-1CD3-4D76-9C4F-B6B7EB9E479C}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{64BEEB10-7F9F-4860-B2FF-84CDA02766B3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{64BEEB10-7F9F-4860-B2FF-84CDA02766B3}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{64BEEB10-7F9F-4860-B2FF-84CDA02766B3}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{64BEEB10-7F9F-4860-B2FF-84CDA02766B3}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{64BEEB10-7F9F-4860-B2FF-84CDA02766B3}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{64BEEB10-7F9F-4860-B2FF-84CDA02766B3}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{64BEEB10-7F9F-4860-B2FF-84CDA02766B3}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{64BEEB10-7F9F-4860-B2FF-84CDA02766B3}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{64BEEB10-7F9F-4860-B2FF-84CDA02766B3}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{64BEEB10-7F9F-4860-B2FF-84CDA02766B3}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{FB97E984-2463-44EB-B8BE-14AA41D0365E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{FB97E984-2463-44EB-B8BE-14AA41D0365E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{FB97E984-2463-44EB-B8BE-14AA41D0365E}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{FB97E984-2463-44EB-B8BE-14AA41D0365E}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{FB97E984-2463-44EB-B8BE-14AA41D0365E}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{FB97E984-2463-44EB-B8BE-14AA41D0365E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{FB97E984-2463-44EB-B8BE-14AA41D0365E}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{FB97E984-2463-44EB-B8BE-14AA41D0365E}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{FB97E984-2463-44EB-B8BE-14AA41D0365E}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{FB97E984-2463-44EB-B8BE-14AA41D0365E}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{DD9E57D5-797F-4420-AF1A-23CEA2F310E0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{DD9E57D5-797F-4420-AF1A-23CEA2F310E0}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{DD9E57D5-797F-4420-AF1A-23CEA2F310E0}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{DD9E57D5-797F-4420-AF1A-23CEA2F310E0}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{DD9E57D5-797F-4420-AF1A-23CEA2F310E0}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{DD9E57D5-797F-4420-AF1A-23CEA2F310E0}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{DD9E57D5-797F-4420-AF1A-23CEA2F310E0}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{DD9E57D5-797F-4420-AF1A-23CEA2F310E0}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{DD9E57D5-797F-4420-AF1A-23CEA2F310E0}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{DD9E57D5-797F-4420-AF1A-23CEA2F310E0}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{736FA0F0-ECA3-416E-B299-85CC425FFF44}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{736FA0F0-ECA3-416E-B299-85CC425FFF44}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{736FA0F0-ECA3-416E-B299-85CC425FFF44}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
|
||||
{736FA0F0-ECA3-416E-B299-85CC425FFF44}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
|
||||
{736FA0F0-ECA3-416E-B299-85CC425FFF44}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{736FA0F0-ECA3-416E-B299-85CC425FFF44}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{736FA0F0-ECA3-416E-B299-85CC425FFF44}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{736FA0F0-ECA3-416E-B299-85CC425FFF44}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
|
||||
{736FA0F0-ECA3-416E-B299-85CC425FFF44}.Release|Mixed Platforms.Build.0 = Release|Any CPU
|
||||
{736FA0F0-ECA3-416E-B299-85CC425FFF44}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{ADEAADF8-62E6-4AA9-9E0D-A8E552A2A85A}.Debug|Any CPU.ActiveCfg = Debug|x86
|
||||
{ADEAADF8-62E6-4AA9-9E0D-A8E552A2A85A}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
|
||||
{ADEAADF8-62E6-4AA9-9E0D-A8E552A2A85A}.Debug|Mixed Platforms.Build.0 = Debug|x86
|
||||
{ADEAADF8-62E6-4AA9-9E0D-A8E552A2A85A}.Debug|x86.ActiveCfg = Debug|x86
|
||||
{ADEAADF8-62E6-4AA9-9E0D-A8E552A2A85A}.Debug|x86.Build.0 = Debug|x86
|
||||
{ADEAADF8-62E6-4AA9-9E0D-A8E552A2A85A}.Release|Any CPU.ActiveCfg = Release|x86
|
||||
{ADEAADF8-62E6-4AA9-9E0D-A8E552A2A85A}.Release|Mixed Platforms.ActiveCfg = Release|x86
|
||||
{ADEAADF8-62E6-4AA9-9E0D-A8E552A2A85A}.Release|Mixed Platforms.Build.0 = Release|x86
|
||||
{ADEAADF8-62E6-4AA9-9E0D-A8E552A2A85A}.Release|x86.ActiveCfg = Release|x86
|
||||
{ADEAADF8-62E6-4AA9-9E0D-A8E552A2A85A}.Release|x86.Build.0 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue