Added Visual Studio for Windows XAMLator extension

Added WPF Sample
This commit is contained in:
Javier Suárez Ruiz 2019-03-17 18:02:09 +01:00
Родитель e39c71b3e2
Коммит 92c182aeac
46 изменённых файлов: 2271 добавлений и 238 удалений

Просмотреть файл

@ -1,11 +1,11 @@
#pragma warning disable 1591
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
// Este código fue generado por una herramienta.
// Versión de runtime:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si
// se vuelve a generar el código.
// </auto-generated>
//------------------------------------------------------------------------------

Просмотреть файл

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.1"/>
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="OpenTK" publicKeyToken="bad199fe84eb3df4" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>

Просмотреть файл

@ -0,0 +1,9 @@
<Application x:Class="XAMLator.SampleApp.WPF.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:XAMLator.SampleApp.WPF"
StartupUri="MainWindow.xaml">
<Application.Resources>
</Application.Resources>
</Application>

Просмотреть файл

@ -0,0 +1,8 @@
using System.Windows;
namespace XAMLator.SampleApp.WPF
{
public partial class App : Application
{
}
}

Просмотреть файл

@ -0,0 +1,9 @@
<wpf:FormsApplicationPage x:Class="XAMLator.SampleApp.WPF.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:wpf="clr-namespace:Xamarin.Forms.Platform.WPF;assembly=Xamarin.Forms.Platform.WPF"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
</wpf:FormsApplicationPage>

Просмотреть файл

@ -0,0 +1,14 @@
using Xamarin.Forms.Platform.WPF;
namespace XAMLator.SampleApp.WPF
{
public partial class MainWindow : FormsApplicationPage
{
public MainWindow()
{
InitializeComponent();
Xamarin.Forms.Forms.Init();
LoadApplication(new SampleApp.App());
}
}
}

Просмотреть файл

@ -0,0 +1,25 @@
<configuration>
<dllmap os="linux" dll="opengl32.dll" target="libGL.so.1"/>
<dllmap os="linux" dll="glu32.dll" target="libGLU.so.1"/>
<dllmap os="linux" dll="openal32.dll" target="libopenal.so.1"/>
<dllmap os="linux" dll="alut.dll" target="libalut.so.0"/>
<dllmap os="linux" dll="opencl.dll" target="libOpenCL.so"/>
<dllmap os="linux" dll="libX11" target="libX11.so.6"/>
<dllmap os="linux" dll="libXi" target="libXi.so.6"/>
<dllmap os="linux" dll="SDL2.dll" target="libSDL2-2.0.so.0"/>
<dllmap os="osx" dll="opengl32.dll" target="/System/Library/Frameworks/OpenGL.framework/OpenGL"/>
<dllmap os="osx" dll="openal32.dll" target="/System/Library/Frameworks/OpenAL.framework/OpenAL" />
<dllmap os="osx" dll="alut.dll" target="/System/Library/Frameworks/OpenAL.framework/OpenAL" />
<dllmap os="osx" dll="libGLES.dll" target="/System/Library/Frameworks/OpenGLES.framework/OpenGLES" />
<dllmap os="osx" dll="libGLESv1_CM.dll" target="/System/Library/Frameworks/OpenGLES.framework/OpenGLES" />
<dllmap os="osx" dll="libGLESv2.dll" target="/System/Library/Frameworks/OpenGLES.framework/OpenGLES" />
<dllmap os="osx" dll="opencl.dll" target="/System/Library/Frameworks/OpenCL.framework/OpenCL"/>
<dllmap os="osx" dll="SDL2.dll" target="libSDL2.dylib"/>
<!-- XQuartz compatibility (X11 on Mac) -->
<dllmap os="osx" dll="libGL.so.1" target="/usr/X11/lib/libGL.dylib"/>
<dllmap os="osx" dll="libX11" target="/usr/X11/lib/libX11.dylib"/>
<dllmap os="osx" dll="libXcursor.so.1" target="/usr/X11/lib/libXcursor.dylib"/>
<dllmap os="osx" dll="libXi" target="/usr/X11/lib/libXi.dylib"/>
<dllmap os="osx" dll="libXinerama" target="/usr/X11/lib/libXinerama.dylib"/>
<dllmap os="osx" dll="libXrandr.so.2" target="/usr/X11/lib/libXrandr.dylib"/>
</configuration>

Просмотреть файл

@ -0,0 +1,55 @@
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Windows;
// 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("XAMLator.SampleApp.WPF")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("XAMLator.SampleApp.WPF")]
[assembly: AssemblyCopyright("Copyright © 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)]
//In order to begin building localizable applications, set
//<UICulture>CultureYouAreCodingWith</UICulture> in your .csproj file
//inside a <PropertyGroup>. For example, if you are using US english
//in your source files, set the <UICulture> to en-US. Then uncomment
//the NeutralResourceLanguage attribute below. Update the "en-US" in
//the line below to match the UICulture setting in the project file.
//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
[assembly: ThemeInfo(
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
//(used if a resource is not found in the page,
// or application resource dictionaries)
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
//(used if a resource is not found in the page,
// app, or any theme specific resource dictionaries)
)]
// 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")]

63
SampleApp/XAMLator.SampleApp.WPF/Properties/Resources.Designer.cs сгенерированный Normal file
Просмотреть файл

@ -0,0 +1,63 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace XAMLator.SampleApp.WPF.Properties {
using System;
/// <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", "15.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 (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("XAMLator.SampleApp.WPF.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>

26
SampleApp/XAMLator.SampleApp.WPF/Properties/Settings.Designer.cs сгенерированный Normal file
Просмотреть файл

@ -0,0 +1,26 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace XAMLator.SampleApp.WPF.Properties {
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.9.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="uri:settings" CurrentProfile="(Default)">
<Profiles>
<Profile Name="(Default)" />
</Profiles>
<Settings />
</SettingsFile>

Просмотреть файл

@ -0,0 +1,148 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\..\packages\Xamarin.Forms.3.3.0.912540\build\Xamarin.Forms.props" Condition="Exists('..\..\packages\Xamarin.Forms.3.3.0.912540\build\Xamarin.Forms.props')" />
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{4E54641B-D109-4A35-AAE7-19DE65E07F7C}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>XAMLator.SampleApp.WPF</RootNamespace>
<AssemblyName>XAMLator.SampleApp.WPF</AssemblyName>
<TargetFrameworkVersion>v4.7.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<WarningLevel>4</WarningLevel>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</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|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="OpenTK, Version=2.0.0.0, Culture=neutral, PublicKeyToken=bad199fe84eb3df4, processorArchitecture=MSIL">
<HintPath>..\..\packages\OpenTK.2.0.0\lib\net20\OpenTK.dll</HintPath>
</Reference>
<Reference Include="OpenTK.GLControl, Version=1.1.0.0, Culture=neutral, PublicKeyToken=bad199fe84eb3df4, processorArchitecture=MSIL">
<HintPath>..\..\packages\OpenTK.GLControl.1.1.2349.61993\lib\NET40\OpenTK.GLControl.dll</HintPath>
</Reference>
<Reference Include="SkiaSharp, Version=1.68.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
<HintPath>..\..\packages\SkiaSharp.1.68.0\lib\net45\SkiaSharp.dll</HintPath>
</Reference>
<Reference Include="SkiaSharp.Views.Forms, Version=1.68.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\SkiaSharp.Views.Forms.1.68.0\lib\netstandard1.3\SkiaSharp.Views.Forms.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xaml">
<RequiredTargetFramework>4.0</RequiredTargetFramework>
</Reference>
<Reference Include="WindowsBase" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="WpfLightToolkit, Version=1.0.0.27, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\WpfLightToolkit.1.0.1\lib\net45\WpfLightToolkit.dll</HintPath>
</Reference>
<Reference Include="Xamarin.Forms.Core, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\Xamarin.Forms.3.3.0.912540\lib\netstandard2.0\Xamarin.Forms.Core.dll</HintPath>
</Reference>
<Reference Include="Xamarin.Forms.Platform, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\Xamarin.Forms.3.3.0.912540\lib\netstandard2.0\Xamarin.Forms.Platform.dll</HintPath>
</Reference>
<Reference Include="Xamarin.Forms.Platform.WPF, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\Xamarin.Forms.Platform.WPF.3.2.0.839982\lib\net45\Xamarin.Forms.Platform.WPF.dll</HintPath>
</Reference>
<Reference Include="Xamarin.Forms.Xaml, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\Xamarin.Forms.3.3.0.912540\lib\netstandard2.0\Xamarin.Forms.Xaml.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<ApplicationDefinition Include="App.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</ApplicationDefinition>
<Page Include="MainWindow.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
<Compile Include="App.xaml.cs">
<DependentUpon>App.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
<Compile Include="MainWindow.xaml.cs">
<DependentUpon>MainWindow.xaml</DependentUpon>
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<None Include="OpenTK.dll.config" />
<None Include="packages.config" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\XAMLator.Server.Net461\XAMLator.Server.Mono.Net461.csproj">
<Project>{e3f80adc-71f8-454e-ba3b-87bd0d78b051}</Project>
<Name>XAMLator.Server.Mono.Net461</Name>
</ProjectReference>
</ItemGroup>
<Import Project="..\XAMLator.SampleApp\XAMLator.SampleApp.projitems" Label="Shared" />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="..\..\packages\SkiaSharp.1.68.0\build\net45\SkiaSharp.targets" Condition="Exists('..\..\packages\SkiaSharp.1.68.0\build\net45\SkiaSharp.targets')" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('..\..\packages\SkiaSharp.1.68.0\build\net45\SkiaSharp.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\SkiaSharp.1.68.0\build\net45\SkiaSharp.targets'))" />
<Error Condition="!Exists('..\..\packages\Xamarin.Forms.3.3.0.912540\build\Xamarin.Forms.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Xamarin.Forms.3.3.0.912540\build\Xamarin.Forms.props'))" />
<Error Condition="!Exists('..\..\packages\Xamarin.Forms.3.3.0.912540\build\Xamarin.Forms.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Xamarin.Forms.3.3.0.912540\build\Xamarin.Forms.targets'))" />
</Target>
<Import Project="..\..\packages\Xamarin.Forms.3.3.0.912540\build\Xamarin.Forms.targets" Condition="Exists('..\..\packages\Xamarin.Forms.3.3.0.912540\build\Xamarin.Forms.targets')" />
</Project>

Просмотреть файл

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="OpenTK" version="2.0.0" targetFramework="net471" />
<package id="OpenTK.GLControl" version="1.1.2349.61993" targetFramework="net471" />
<package id="SkiaSharp" version="1.68.0" targetFramework="net471" />
<package id="SkiaSharp.Views.Forms" version="1.68.0" targetFramework="net471" />
<package id="WpfLightToolkit" version="1.0.1" targetFramework="net471" />
<package id="Xamarin.Forms" version="3.3.0.912540" targetFramework="net471" />
<package id="Xamarin.Forms.Platform.WPF" version="3.2.0.839982" targetFramework="net471" />
</packages>

Просмотреть файл

@ -1,10 +1,8 @@
using System;
using System.Collections.Generic;
using Xamarin.Forms;
using Xamarin.Forms;
namespace XAMLator.SampleApp
{
public partial class LabelView : ContentView
public partial class LabelView : ContentView
{
public LabelView()
{

Просмотреть файл

@ -1,11 +1,8 @@
using System;
using System.Collections.Generic;
using Xamarin.Forms;
using Xamarin.Forms;
namespace XAMLator.SampleApp
{
public partial class PageWithCSS : ContentPage
public partial class PageWithCSS : ContentPage
{
public PageWithCSS()
{

Просмотреть файл

@ -1,11 +1,8 @@
using System;
using System.Collections.Generic;
using Xamarin.Forms;
using Xamarin.Forms;
namespace XAMLator.SampleApp
{
public partial class PageWithNestedView : ContentPage
public partial class PageWithNestedView : ContentPage
{
public PageWithNestedView()
{

Просмотреть файл

@ -1,10 +1,9 @@
using System;
using SkiaSharp;
using SkiaSharp;
using SkiaSharp.Views.Forms;
namespace XAMLator.SampleApp
{
public class SkiaSharpDemo : SKCanvasView
public class SkiaSharpDemo : SKCanvasView
{
protected override void OnPaintSurface(SKPaintSurfaceEventArgs e)
{

Просмотреть файл

@ -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("XAMLator.Client.net4611")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("XAMLator.Client.net4611")]
[assembly: AssemblyCopyright("Copyright © 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("c5b4a4a3-7346-4b77-ad03-839116fafac3")]
// 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")]

Просмотреть файл

@ -0,0 +1,193 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\packages\Microsoft.CodeAnalysis.Analyzers.2.6.3\build\Microsoft.CodeAnalysis.Analyzers.props" Condition="Exists('..\packages\Microsoft.CodeAnalysis.Analyzers.2.6.3\build\Microsoft.CodeAnalysis.Analyzers.props')" />
<Import Project="..\packages\Xamarin.Forms.3.4.0.1009999\build\Xamarin.Forms.props" Condition="Exists('..\packages\Xamarin.Forms.3.4.0.1009999\build\Xamarin.Forms.props')" />
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{C5B4A4A3-7346-4B77-AD03-839116FAFAC3}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>XAMLator.Client.Net461</RootNamespace>
<AssemblyName>XAMLator.Client.Net461</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</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="Microsoft.CodeAnalysis, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.CodeAnalysis.Common.2.10.0\lib\netstandard1.3\Microsoft.CodeAnalysis.dll</HintPath>
</Reference>
<Reference Include="Microsoft.CodeAnalysis.CSharp, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.CodeAnalysis.CSharp.2.10.0\lib\netstandard1.3\Microsoft.CodeAnalysis.CSharp.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.12.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.AppContext, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.AppContext.4.3.0\lib\net46\System.AppContext.dll</HintPath>
</Reference>
<Reference Include="System.Collections.Immutable, Version=1.2.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Collections.Immutable.1.5.0\lib\netstandard2.0\System.Collections.Immutable.dll</HintPath>
</Reference>
<Reference Include="System.ComponentModel.Composition" />
<Reference Include="System.Console, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Console.4.3.0\lib\net46\System.Console.dll</HintPath>
<Private>True</Private>
<Private>True</Private>
</Reference>
<Reference Include="System.Core" />
<Reference Include="System.Diagnostics.FileVersionInfo, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Diagnostics.FileVersionInfo.4.3.0\lib\net46\System.Diagnostics.FileVersionInfo.dll</HintPath>
<Private>True</Private>
<Private>True</Private>
</Reference>
<Reference Include="System.Diagnostics.StackTrace, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Diagnostics.StackTrace.4.3.0\lib\net46\System.Diagnostics.StackTrace.dll</HintPath>
<Private>True</Private>
<Private>True</Private>
</Reference>
<Reference Include="System.IO.Compression, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
<HintPath>..\packages\System.IO.Compression.4.3.0\lib\net46\System.IO.Compression.dll</HintPath>
<Private>True</Private>
<Private>True</Private>
</Reference>
<Reference Include="System.IO.FileSystem, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.IO.FileSystem.4.3.0\lib\net46\System.IO.FileSystem.dll</HintPath>
<Private>True</Private>
<Private>True</Private>
</Reference>
<Reference Include="System.IO.FileSystem.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.IO.FileSystem.Primitives.4.3.0\lib\net46\System.IO.FileSystem.Primitives.dll</HintPath>
<Private>True</Private>
<Private>True</Private>
</Reference>
<Reference Include="System.Numerics" />
<Reference Include="System.Reflection.Metadata, Version=1.4.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Reflection.Metadata.1.6.0\lib\netstandard2.0\System.Reflection.Metadata.dll</HintPath>
</Reference>
<Reference Include="System.Security.Cryptography.Algorithms, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Security.Cryptography.Algorithms.4.3.0\lib\net461\System.Security.Cryptography.Algorithms.dll</HintPath>
<Private>True</Private>
<Private>True</Private>
</Reference>
<Reference Include="System.Security.Cryptography.Encoding, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Security.Cryptography.Encoding.4.3.0\lib\net46\System.Security.Cryptography.Encoding.dll</HintPath>
<Private>True</Private>
<Private>True</Private>
</Reference>
<Reference Include="System.Security.Cryptography.Primitives, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Security.Cryptography.Primitives.4.3.0\lib\net46\System.Security.Cryptography.Primitives.dll</HintPath>
<Private>True</Private>
<Private>True</Private>
</Reference>
<Reference Include="System.Security.Cryptography.X509Certificates, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Security.Cryptography.X509Certificates.4.3.0\lib\net461\System.Security.Cryptography.X509Certificates.dll</HintPath>
<Private>True</Private>
<Private>True</Private>
</Reference>
<Reference Include="System.Text.Encoding.CodePages, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Text.Encoding.CodePages.4.3.0\lib\net46\System.Text.Encoding.CodePages.dll</HintPath>
</Reference>
<Reference Include="System.Threading.Tasks.Extensions, Version=4.1.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\packages\System.Threading.Tasks.Extensions.4.3.0\lib\portable-net45+win8+wp8+wpa81\System.Threading.Tasks.Extensions.dll</HintPath>
</Reference>
<Reference Include="System.Threading.Thread, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Threading.Thread.4.3.0\lib\net46\System.Threading.Thread.dll</HintPath>
<Private>True</Private>
<Private>True</Private>
</Reference>
<Reference Include="System.ValueTuple, Version=4.0.1.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\packages\System.ValueTuple.4.3.0\lib\netstandard1.0\System.ValueTuple.dll</HintPath>
<Private>True</Private>
<Private>True</Private>
</Reference>
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.ReaderWriter, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Xml.ReaderWriter.4.3.0\lib\net46\System.Xml.ReaderWriter.dll</HintPath>
<Private>True</Private>
<Private>True</Private>
</Reference>
<Reference Include="System.Xml.XmlDocument, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Xml.XmlDocument.4.3.0\lib\net46\System.Xml.XmlDocument.dll</HintPath>
<Private>True</Private>
<Private>True</Private>
</Reference>
<Reference Include="System.Xml.XPath, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Xml.XPath.4.3.0\lib\net46\System.Xml.XPath.dll</HintPath>
<Private>True</Private>
<Private>True</Private>
</Reference>
<Reference Include="System.Xml.XPath.XDocument, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Xml.XPath.XDocument.4.3.0\lib\net46\System.Xml.XPath.XDocument.dll</HintPath>
<Private>True</Private>
<Private>True</Private>
</Reference>
<Reference Include="Xamarin.Forms.Build.Tasks">
<HintPath>..\packages\Xamarin.Forms.3.4.0.1009999\build\net46\Xamarin.Forms.Build.Tasks.dll</HintPath>
</Reference>
<Reference Include="Xamarin.Forms.Core, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Xamarin.Forms.3.4.0.1009999\lib\netstandard2.0\Xamarin.Forms.Core.dll</HintPath>
</Reference>
<Reference Include="Xamarin.Forms.Platform, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Xamarin.Forms.3.4.0.1009999\lib\netstandard2.0\Xamarin.Forms.Platform.dll</HintPath>
</Reference>
<Reference Include="Xamarin.Forms.Xaml, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Xamarin.Forms.3.4.0.1009999\lib\netstandard2.0\Xamarin.Forms.Xaml.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\XAMLator.Core.Net461\XAMLator.Core.Net461.csproj">
<Project>{a42dcb75-14d8-4ee0-946e-6ceaf5079851}</Project>
<Name>XAMLator.Core.Net461</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Analyzer Include="..\packages\Microsoft.CodeAnalysis.Analyzers.2.6.3\analyzers\dotnet\cs\Microsoft.CodeAnalysis.Analyzers.dll" />
<Analyzer Include="..\packages\Microsoft.CodeAnalysis.Analyzers.2.6.3\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.Analyzers.dll" />
</ItemGroup>
<Import Project="..\XAMLator.Client\XAMLator.Client.projitems" Label="Shared" />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('..\packages\Xamarin.Forms.3.4.0.1009999\build\Xamarin.Forms.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Xamarin.Forms.3.4.0.1009999\build\Xamarin.Forms.props'))" />
<Error Condition="!Exists('..\packages\Xamarin.Forms.3.4.0.1009999\build\Xamarin.Forms.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Xamarin.Forms.3.4.0.1009999\build\Xamarin.Forms.targets'))" />
<Error Condition="!Exists('..\packages\Microsoft.CodeAnalysis.Analyzers.2.6.3\build\Microsoft.CodeAnalysis.Analyzers.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.CodeAnalysis.Analyzers.2.6.3\build\Microsoft.CodeAnalysis.Analyzers.props'))" />
</Target>
<Import Project="..\packages\Xamarin.Forms.3.4.0.1009999\build\Xamarin.Forms.targets" Condition="Exists('..\packages\Xamarin.Forms.3.4.0.1009999\build\Xamarin.Forms.targets')" />
</Project>

Просмотреть файл

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.IO.FileSystem" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Security.Cryptography.Algorithms" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.3.0.0" newVersion="4.3.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.ValueTuple" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Security.Cryptography.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.IO.FileSystem.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Xml.ReaderWriter" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.IO.Compression" publicKeyToken="b77a5c561934e089" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Xml.XPath.XDocument" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>

Просмотреть файл

@ -0,0 +1,49 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.CodeAnalysis.Analyzers" version="2.6.3" targetFramework="net4611" developmentDependency="true" />
<package id="Microsoft.CodeAnalysis.Common" version="2.10.0" targetFramework="net4611" />
<package id="Microsoft.CodeAnalysis.CSharp" version="2.10.0" targetFramework="net4611" />
<package id="Newtonsoft.Json" version="12.0.1" targetFramework="net461" />
<package id="System.AppContext" version="4.3.0" targetFramework="net4611" />
<package id="System.Collections" version="4.3.0" targetFramework="net4611" />
<package id="System.Collections.Concurrent" version="4.3.0" targetFramework="net4611" />
<package id="System.Collections.Immutable" version="1.5.0" targetFramework="net4611" />
<package id="System.Console" version="4.3.0" targetFramework="net4611" />
<package id="System.Diagnostics.Debug" version="4.3.0" targetFramework="net4611" />
<package id="System.Diagnostics.FileVersionInfo" version="4.3.0" targetFramework="net4611" />
<package id="System.Diagnostics.StackTrace" version="4.3.0" targetFramework="net4611" />
<package id="System.Diagnostics.Tools" version="4.3.0" targetFramework="net4611" />
<package id="System.Dynamic.Runtime" version="4.3.0" targetFramework="net4611" />
<package id="System.Globalization" version="4.3.0" targetFramework="net4611" />
<package id="System.IO.Compression" version="4.3.0" targetFramework="net4611" />
<package id="System.IO.FileSystem" version="4.3.0" targetFramework="net4611" />
<package id="System.IO.FileSystem.Primitives" version="4.3.0" targetFramework="net4611" />
<package id="System.Linq" version="4.3.0" targetFramework="net4611" />
<package id="System.Linq.Expressions" version="4.3.0" targetFramework="net4611" />
<package id="System.Reflection" version="4.3.0" targetFramework="net4611" />
<package id="System.Reflection.Metadata" version="1.6.0" targetFramework="net4611" />
<package id="System.Resources.ResourceManager" version="4.3.0" targetFramework="net4611" />
<package id="System.Runtime" version="4.3.0" targetFramework="net4611" />
<package id="System.Runtime.Extensions" version="4.3.0" targetFramework="net4611" />
<package id="System.Runtime.InteropServices" version="4.3.0" targetFramework="net4611" />
<package id="System.Runtime.Numerics" version="4.3.0" targetFramework="net4611" />
<package id="System.Security.Cryptography.Algorithms" version="4.3.0" targetFramework="net4611" />
<package id="System.Security.Cryptography.Encoding" version="4.3.0" targetFramework="net4611" />
<package id="System.Security.Cryptography.Primitives" version="4.3.0" targetFramework="net4611" />
<package id="System.Security.Cryptography.X509Certificates" version="4.3.0" targetFramework="net4611" />
<package id="System.Text.Encoding" version="4.3.0" targetFramework="net4611" />
<package id="System.Text.Encoding.CodePages" version="4.3.0" targetFramework="net4611" />
<package id="System.Text.Encoding.Extensions" version="4.3.0" targetFramework="net4611" />
<package id="System.Threading" version="4.3.0" targetFramework="net4611" />
<package id="System.Threading.Tasks" version="4.3.0" targetFramework="net4611" />
<package id="System.Threading.Tasks.Extensions" version="4.3.0" targetFramework="net4611" />
<package id="System.Threading.Tasks.Parallel" version="4.3.0" targetFramework="net4611" />
<package id="System.Threading.Thread" version="4.3.0" targetFramework="net4611" />
<package id="System.ValueTuple" version="4.3.0" targetFramework="net4611" />
<package id="System.Xml.ReaderWriter" version="4.3.0" targetFramework="net4611" />
<package id="System.Xml.XDocument" version="4.3.0" targetFramework="net4611" />
<package id="System.Xml.XmlDocument" version="4.3.0" targetFramework="net4611" />
<package id="System.Xml.XPath" version="4.3.0" targetFramework="net4611" />
<package id="System.Xml.XPath.XDocument" version="4.3.0" targetFramework="net4611" />
<package id="Xamarin.Forms" version="3.4.0.1009999" targetFramework="net4611" />
</packages>

Просмотреть файл

@ -0,0 +1,9 @@

// This file is used by Code Analysis to maintain SuppressMessage
// attributes that are applied to this project.
// Project-level suppressions either have no target or are given
// a specific target and scoped to a namespace, type, member, etc.
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Performance", "VSSDK004:Use BackgroundLoad flag in ProvideAutoLoad attribute for asynchronous auto load.", Justification = "<Pending>", Scope = "type", Target = "~T:XAMLator.Client.XAMLatorPackage")]
[assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Usage", "VSTHRD100:Avoid async void methods", Justification = "<Pending>", Scope = "member", Target = "~M:XAMLator.Client.XAMLatorPackage.OnDocumentSaved(EnvDTE.Document)")]

Двоичные данные
XAMLator.Client.VisualStudio/Newtonsoft.Json.dll Normal file

Двоичный файл не отображается.

Просмотреть файл

@ -0,0 +1,33 @@
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("XAMLator.Client.VisualStudio")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("XAMLator.Client.VisualStudio")]
[assembly: AssemblyCopyright("")]
[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)]
// 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")]

Двоичные данные
XAMLator.Client.VisualStudio/Resources/XAMLatorPackage.ico Normal file

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 418 KiB

Просмотреть файл

@ -0,0 +1,140 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
VS SDK Notes: This resx file contains the resources that will be consumed from your package by Visual Studio.
For example, Visual Studio will attempt to load resource '400' from this resource stream when it needs to
load your package's icon. Because Visual Studio will always look in the VSPackage.resources stream first for
resources it needs, you should put additional resources that Visual Studio will load directly into this resx
file.
Resources that you would like to access directly from your package in a strong-typed fashion should be stored
in Resources.resx or another resx file.
-->
<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.Runtime.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:import namespace="http://www.w3.org/XML/1998/namespace" />
<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" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</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" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</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=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="110" xml:space="preserve">
<value>XAMLatorPackage Extension</value>
</data>
<data name="112" xml:space="preserve">
<value>XAMLatorPackage Visual Studio Extension Detailed Info</value>
</data>
<data name="400" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\XAMLatorPackage.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
</root>

Просмотреть файл

@ -0,0 +1,374 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\packages\Microsoft.CodeAnalysis.Analyzers.2.6.3\build\Microsoft.CodeAnalysis.Analyzers.props" Condition="Exists('..\packages\Microsoft.CodeAnalysis.Analyzers.2.6.3\build\Microsoft.CodeAnalysis.Analyzers.props')" />
<Import Project="..\packages\Microsoft.VSSDK.BuildTools.15.9.3041\build\Microsoft.VSSDK.BuildTools.props" Condition="Exists('..\packages\Microsoft.VSSDK.BuildTools.15.9.3041\build\Microsoft.VSSDK.BuildTools.props')" />
<PropertyGroup>
<MinimumVisualStudioVersion>15.0</MinimumVisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
<UseCodebase>true</UseCodebase>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup>
<SignAssembly>false</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>
</AssemblyOriginatorKeyFile>
</PropertyGroup>
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<SchemaVersion>2.0</SchemaVersion>
<ProjectTypeGuids>{82b43b9b-a64c-4715-b499-d71e9ca2bd60};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<ProjectGuid>{4F503379-98F6-4D3E-8751-EE23139BF354}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>XAMLator.Client.VisualStudio</RootNamespace>
<AssemblyName>XAMLator.Client.VisualStudio</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<GeneratePkgDefFile>true</GeneratePkgDefFile>
<IncludeAssemblyInVSIXContainer>true</IncludeAssemblyInVSIXContainer>
<IncludeDebugSymbolsInVSIXContainer>true</IncludeDebugSymbolsInVSIXContainer>
<IncludeDebugSymbolsInLocalVSIXDeployment>true</IncludeDebugSymbolsInLocalVSIXDeployment>
<CopyBuildOutputToOutputDirectory>true</CopyBuildOutputToOutputDirectory>
<CopyOutputSymbolsToOutputDirectory>false</CopyOutputSymbolsToOutputDirectory>
<StartAction>Program</StartAction>
<StartProgram Condition="'$(DevEnvDir)' != ''">$(DevEnvDir)devenv.exe</StartProgram>
<StartArguments>/rootsuffix Exp</StartArguments>
</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="GlobalSuppressions.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="XAMLatorPackage.cs" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
<None Include="packages.config" />
<None Include="source.extension.vsixmanifest">
<SubType>Designer</SubType>
</None>
</ItemGroup>
<ItemGroup>
<Reference Include="EnvDTE, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<EmbedInteropTypes>False</EmbedInteropTypes>
</Reference>
<Reference Include="EnvDTE100, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<EmbedInteropTypes>False</EmbedInteropTypes>
</Reference>
<Reference Include="EnvDTE80, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<EmbedInteropTypes>False</EmbedInteropTypes>
</Reference>
<Reference Include="EnvDTE90, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<EmbedInteropTypes>False</EmbedInteropTypes>
</Reference>
<Reference Include="Microsoft.ApplicationInsights, Version=2.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.ApplicationInsights.2.0.1\lib\net46\Microsoft.ApplicationInsights.dll</HintPath>
</Reference>
<Reference Include="Microsoft.CodeAnalysis, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.CodeAnalysis.Common.2.10.0\lib\netstandard1.3\Microsoft.CodeAnalysis.dll</HintPath>
</Reference>
<Reference Include="Microsoft.CodeAnalysis.CSharp, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.CodeAnalysis.CSharp.2.10.0\lib\netstandard1.3\Microsoft.CodeAnalysis.CSharp.dll</HintPath>
</Reference>
<Reference Include="Microsoft.CodeAnalysis.CSharp.Workspaces, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.CodeAnalysis.CSharp.Workspaces.2.10.0\lib\netstandard1.3\Microsoft.CodeAnalysis.CSharp.Workspaces.dll</HintPath>
</Reference>
<Reference Include="Microsoft.CodeAnalysis.VisualBasic, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.CodeAnalysis.VisualBasic.2.10.0\lib\netstandard1.3\Microsoft.CodeAnalysis.VisualBasic.dll</HintPath>
</Reference>
<Reference Include="Microsoft.CodeAnalysis.VisualBasic.Workspaces, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.CodeAnalysis.VisualBasic.Workspaces.2.10.0\lib\netstandard1.3\Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll</HintPath>
</Reference>
<Reference Include="Microsoft.CodeAnalysis.Workspaces, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.CodeAnalysis.Workspaces.Common.2.10.0\lib\net46\Microsoft.CodeAnalysis.Workspaces.dll</HintPath>
</Reference>
<Reference Include="Microsoft.CodeAnalysis.Workspaces.Desktop, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.CodeAnalysis.Workspaces.Common.2.10.0\lib\net46\Microsoft.CodeAnalysis.Workspaces.Desktop.dll</HintPath>
</Reference>
<Reference Include="Microsoft.CodeAnalysis.Workspaces.MSBuild, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.CodeAnalysis.Workspaces.MSBuild.2.10.0\lib\net46\Microsoft.CodeAnalysis.Workspaces.MSBuild.dll</HintPath>
</Reference>
<Reference Include="Microsoft.CSharp" />
<Reference Include="Microsoft.VisualStudio.CommandBars, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<EmbedInteropTypes>False</EmbedInteropTypes>
</Reference>
<Reference Include="Microsoft.VisualStudio.ComponentModelHost, Version=16.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.VisualStudio.ComponentModelHost.16.0.467\lib\net46\Microsoft.VisualStudio.ComponentModelHost.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.CoreUtility, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.VisualStudio.CoreUtility.15.6.27740\lib\net46\Microsoft.VisualStudio.CoreUtility.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.ImageCatalog, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.VisualStudio.ImageCatalog.15.9.28307\lib\net45\Microsoft.VisualStudio.ImageCatalog.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.Imaging, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.VisualStudio.Imaging.15.9.28307\lib\net45\Microsoft.VisualStudio.Imaging.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime.14.3.26930\lib\net20\Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime.dll</HintPath>
<EmbedInteropTypes>True</EmbedInteropTypes>
</Reference>
<Reference Include="Microsoft.VisualStudio.LanguageServices, Version=2.10.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.VisualStudio.LanguageServices.2.10.0\lib\net46\Microsoft.VisualStudio.LanguageServices.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.OLE.Interop, Version=7.1.40304.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<HintPath>..\packages\Microsoft.VisualStudio.OLE.Interop.7.10.6071\lib\Microsoft.VisualStudio.OLE.Interop.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.Shell.15.0, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.VisualStudio.Shell.15.0.15.9.28307\lib\net45\Microsoft.VisualStudio.Shell.15.0.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.Shell.Framework, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.VisualStudio.Shell.Framework.15.9.28307\lib\net45\Microsoft.VisualStudio.Shell.Framework.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.Shell.Immutable.10.0, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.VisualStudio.Shell.Immutable.10.0.10.0.30319\lib\net40\Microsoft.VisualStudio.Shell.Immutable.10.0.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.Shell.Immutable.11.0, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.VisualStudio.Shell.Immutable.11.0.11.0.50727\lib\net45\Microsoft.VisualStudio.Shell.Immutable.11.0.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.Shell.Immutable.12.0, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.VisualStudio.Shell.Immutable.12.0.12.0.21003\lib\net45\Microsoft.VisualStudio.Shell.Immutable.12.0.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.Shell.Interop, Version=7.1.40304.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<HintPath>..\packages\Microsoft.VisualStudio.Shell.Interop.7.10.6072\lib\net11\Microsoft.VisualStudio.Shell.Interop.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.Shell.Interop.10.0, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30320\lib\net20\Microsoft.VisualStudio.Shell.Interop.10.0.dll</HintPath>
<EmbedInteropTypes>True</EmbedInteropTypes>
</Reference>
<Reference Include="Microsoft.VisualStudio.Shell.Interop.11.0, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61031\lib\net20\Microsoft.VisualStudio.Shell.Interop.11.0.dll</HintPath>
<EmbedInteropTypes>True</EmbedInteropTypes>
</Reference>
<Reference Include="Microsoft.VisualStudio.Shell.Interop.12.0, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.VisualStudio.Shell.Interop.12.0.12.0.30111\lib\net20\Microsoft.VisualStudio.Shell.Interop.12.0.dll</HintPath>
<EmbedInteropTypes>True</EmbedInteropTypes>
</Reference>
<Reference Include="Microsoft.VisualStudio.Shell.Interop.14.0.DesignTime, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.VisualStudio.Shell.Interop.14.0.DesignTime.14.3.26929\lib\net20\Microsoft.VisualStudio.Shell.Interop.14.0.DesignTime.dll</HintPath>
<EmbedInteropTypes>True</EmbedInteropTypes>
</Reference>
<Reference Include="Microsoft.VisualStudio.Shell.Interop.15.3.DesignTime, Version=15.3.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.VisualStudio.Shell.Interop.15.3.DesignTime.15.0.26929\lib\net20\Microsoft.VisualStudio.Shell.Interop.15.3.DesignTime.dll</HintPath>
<EmbedInteropTypes>True</EmbedInteropTypes>
</Reference>
<Reference Include="Microsoft.VisualStudio.Shell.Interop.15.6.DesignTime, Version=15.6.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.VisualStudio.Shell.Interop.15.6.DesignTime.15.6.27413\lib\net20\Microsoft.VisualStudio.Shell.Interop.15.6.DesignTime.dll</HintPath>
<EmbedInteropTypes>True</EmbedInteropTypes>
</Reference>
<Reference Include="Microsoft.VisualStudio.Shell.Interop.8.0, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<HintPath>..\packages\Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50728\lib\net11\Microsoft.VisualStudio.Shell.Interop.8.0.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.Shell.Interop.9.0, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<HintPath>..\packages\Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30730\lib\net11\Microsoft.VisualStudio.Shell.Interop.9.0.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.Text.Data, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.VisualStudio.Text.Data.15.6.27740\lib\net46\Microsoft.VisualStudio.Text.Data.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.TextManager.Interop, Version=7.1.40304.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<HintPath>..\packages\Microsoft.VisualStudio.TextManager.Interop.7.10.6071\lib\net11\Microsoft.VisualStudio.TextManager.Interop.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.TextManager.Interop.8.0, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<HintPath>..\packages\Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50728\lib\net11\Microsoft.VisualStudio.TextManager.Interop.8.0.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.Threading, Version=16.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.VisualStudio.Threading.16.0.102\lib\net46\Microsoft.VisualStudio.Threading.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.Utilities, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.VisualStudio.Utilities.15.9.28307\lib\net46\Microsoft.VisualStudio.Utilities.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.Validation, Version=15.3.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\Microsoft.VisualStudio.Validation.15.3.15\lib\net45\Microsoft.VisualStudio.Validation.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.12.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="SQLitePCLRaw.batteries_green, Version=1.0.0.0, Culture=neutral, PublicKeyToken=a84b7dcfb1391f7f, processorArchitecture=MSIL">
<HintPath>..\packages\SQLitePCLRaw.bundle_green.1.1.2\lib\net45\SQLitePCLRaw.batteries_green.dll</HintPath>
</Reference>
<Reference Include="SQLitePCLRaw.batteries_v2, Version=1.0.0.0, Culture=neutral, PublicKeyToken=8226ea5df37bcae9, processorArchitecture=MSIL">
<HintPath>..\packages\SQLitePCLRaw.bundle_green.1.1.2\lib\net45\SQLitePCLRaw.batteries_v2.dll</HintPath>
</Reference>
<Reference Include="SQLitePCLRaw.core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=1488e028ca7ab535, processorArchitecture=MSIL">
<HintPath>..\packages\SQLitePCLRaw.core.1.1.2\lib\net45\SQLitePCLRaw.core.dll</HintPath>
</Reference>
<Reference Include="SQLitePCLRaw.provider.e_sqlite3, Version=1.0.0.0, Culture=neutral, PublicKeyToken=9c301db686d0bd12, processorArchitecture=MSIL">
<HintPath>..\packages\SQLitePCLRaw.provider.e_sqlite3.net45.1.1.2\lib\net45\SQLitePCLRaw.provider.e_sqlite3.dll</HintPath>
</Reference>
<Reference Include="stdole, Version=7.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<EmbedInteropTypes>False</EmbedInteropTypes>
</Reference>
<Reference Include="StreamJsonRpc, Version=1.3.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\StreamJsonRpc.1.3.23\lib\net45\StreamJsonRpc.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.AppContext, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.AppContext.4.3.0\lib\net46\System.AppContext.dll</HintPath>
</Reference>
<Reference Include="System.Collections.Immutable, Version=1.2.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Collections.Immutable.1.5.0\lib\netstandard1.3\System.Collections.Immutable.dll</HintPath>
</Reference>
<Reference Include="System.ComponentModel.Composition" />
<Reference Include="System.Composition.AttributedModel, Version=1.0.31.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Composition.AttributedModel.1.0.31\lib\portable-net45+win8+wp8+wpa81\System.Composition.AttributedModel.dll</HintPath>
</Reference>
<Reference Include="System.Composition.Convention, Version=1.0.31.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Composition.Convention.1.0.31\lib\portable-net45+win8+wp8+wpa81\System.Composition.Convention.dll</HintPath>
</Reference>
<Reference Include="System.Composition.Hosting, Version=1.0.31.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Composition.Hosting.1.0.31\lib\portable-net45+win8+wp8+wpa81\System.Composition.Hosting.dll</HintPath>
</Reference>
<Reference Include="System.Composition.Runtime, Version=1.0.31.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Composition.Runtime.1.0.31\lib\portable-net45+win8+wp8+wpa81\System.Composition.Runtime.dll</HintPath>
</Reference>
<Reference Include="System.Composition.TypedParts, Version=1.0.31.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Composition.TypedParts.1.0.31\lib\portable-net45+win8+wp8+wpa81\System.Composition.TypedParts.dll</HintPath>
</Reference>
<Reference Include="System.Console, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Console.4.3.0\lib\net46\System.Console.dll</HintPath>
</Reference>
<Reference Include="System.Data" />
<Reference Include="System.Design" />
<Reference Include="System.Diagnostics.FileVersionInfo, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Diagnostics.FileVersionInfo.4.3.0\lib\net46\System.Diagnostics.FileVersionInfo.dll</HintPath>
</Reference>
<Reference Include="System.Diagnostics.StackTrace, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Diagnostics.StackTrace.4.3.0\lib\net46\System.Diagnostics.StackTrace.dll</HintPath>
</Reference>
<Reference Include="System.Drawing" />
<Reference Include="System.IO.Compression, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
<HintPath>..\packages\System.IO.Compression.4.3.0\lib\net46\System.IO.Compression.dll</HintPath>
</Reference>
<Reference Include="System.IO.FileSystem, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.IO.FileSystem.4.3.0\lib\net46\System.IO.FileSystem.dll</HintPath>
</Reference>
<Reference Include="System.IO.FileSystem.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.IO.FileSystem.Primitives.4.3.0\lib\net46\System.IO.FileSystem.Primitives.dll</HintPath>
</Reference>
<Reference Include="System.Net.Http" />
<Reference Include="System.Numerics" />
<Reference Include="System.Reflection.Metadata, Version=1.4.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Reflection.Metadata.1.6.0\lib\portable-net45+win8\System.Reflection.Metadata.dll</HintPath>
</Reference>
<Reference Include="System.Security.Cryptography.Algorithms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Security.Cryptography.Algorithms.4.3.0\lib\net46\System.Security.Cryptography.Algorithms.dll</HintPath>
</Reference>
<Reference Include="System.Security.Cryptography.Encoding, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Security.Cryptography.Encoding.4.3.0\lib\net46\System.Security.Cryptography.Encoding.dll</HintPath>
</Reference>
<Reference Include="System.Security.Cryptography.Primitives, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Security.Cryptography.Primitives.4.3.0\lib\net46\System.Security.Cryptography.Primitives.dll</HintPath>
</Reference>
<Reference Include="System.Security.Cryptography.X509Certificates, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Security.Cryptography.X509Certificates.4.3.0\lib\net46\System.Security.Cryptography.X509Certificates.dll</HintPath>
</Reference>
<Reference Include="System.Text.Encoding.CodePages, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Text.Encoding.CodePages.4.3.0\lib\net46\System.Text.Encoding.CodePages.dll</HintPath>
</Reference>
<Reference Include="System.Threading.Tasks.Extensions, Version=4.1.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\packages\System.Threading.Tasks.Extensions.4.3.0\lib\portable-net45+win8+wp8+wpa81\System.Threading.Tasks.Extensions.dll</HintPath>
</Reference>
<Reference Include="System.Threading.Thread, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Threading.Thread.4.3.0\lib\net46\System.Threading.Thread.dll</HintPath>
</Reference>
<Reference Include="System.ValueTuple, Version=4.0.1.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\packages\System.ValueTuple.4.3.0\lib\netstandard1.0\System.ValueTuple.dll</HintPath>
</Reference>
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Xml.ReaderWriter, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Xml.ReaderWriter.4.3.0\lib\net46\System.Xml.ReaderWriter.dll</HintPath>
</Reference>
<Reference Include="System.Xml.XmlDocument, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Xml.XmlDocument.4.3.0\lib\net46\System.Xml.XmlDocument.dll</HintPath>
</Reference>
<Reference Include="System.Xml.XPath, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Xml.XPath.4.3.0\lib\net46\System.Xml.XPath.dll</HintPath>
</Reference>
<Reference Include="System.Xml.XPath.XDocument, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Xml.XPath.XDocument.4.3.0\lib\net46\System.Xml.XPath.XDocument.dll</HintPath>
</Reference>
<Reference Include="VsixLogger, Version=1.1.44.0, Culture=neutral, PublicKeyToken=29d32695dc822296, processorArchitecture=MSIL">
<HintPath>..\packages\VsixLogger.1.1.44.0\lib\net45\VsixLogger.dll</HintPath>
</Reference>
<Reference Include="WindowsBase" />
</ItemGroup>
<ItemGroup>
<Analyzer Include="..\packages\Microsoft.CodeAnalysis.Analyzers.2.6.3\analyzers\dotnet\cs\Microsoft.CodeAnalysis.Analyzers.dll" />
<Analyzer Include="..\packages\Microsoft.CodeAnalysis.Analyzers.2.6.3\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.Analyzers.dll" />
<Analyzer Include="..\packages\Microsoft.VisualStudio.SDK.Analyzers.15.8.33\analyzers\cs\Microsoft.VisualStudio.SDK.Analyzers.dll" />
<Analyzer Include="..\packages\Microsoft.VisualStudio.Threading.Analyzers.16.0.102\analyzers\cs\Microsoft.VisualStudio.Threading.Analyzers.CodeFixes.dll" />
<Analyzer Include="..\packages\Microsoft.VisualStudio.Threading.Analyzers.16.0.102\analyzers\cs\Microsoft.VisualStudio.Threading.Analyzers.dll" />
</ItemGroup>
<ItemGroup>
<Content Include="Newtonsoft.Json.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<IncludeInVSIX>true</IncludeInVSIX>
</Content>
<Content Include="Resources\XAMLatorPackage.ico" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="VSPackage.resx" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\XAMLator.Client.Net461\XAMLator.Client.Net461.csproj">
<Project>{c5b4a4a3-7346-4b77-ad03-839116fafac3}</Project>
<Name>XAMLator.Client.Net461</Name>
</ProjectReference>
<ProjectReference Include="..\XAMLator.Core.Net461\XAMLator.Core.Net461.csproj">
<Project>{a42dcb75-14d8-4ee0-946e-6ceaf5079851}</Project>
<Name>XAMLator.Core.Net461</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets" Condition="'$(VSToolsPath)' != ''" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('..\packages\Microsoft.VSSDK.BuildTools.15.9.3041\build\Microsoft.VSSDK.BuildTools.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.VSSDK.BuildTools.15.9.3041\build\Microsoft.VSSDK.BuildTools.props'))" />
<Error Condition="!Exists('..\packages\Microsoft.VSSDK.BuildTools.15.9.3041\build\Microsoft.VSSDK.BuildTools.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.VSSDK.BuildTools.15.9.3041\build\Microsoft.VSSDK.BuildTools.targets'))" />
<Error Condition="!Exists('..\packages\Microsoft.VisualStudio.SDK.Analyzers.15.8.33\build\Microsoft.VisualStudio.SDK.Analyzers.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.VisualStudio.SDK.Analyzers.15.8.33\build\Microsoft.VisualStudio.SDK.Analyzers.targets'))" />
<Error Condition="!Exists('..\packages\Microsoft.CodeAnalysis.Analyzers.2.6.3\build\Microsoft.CodeAnalysis.Analyzers.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.CodeAnalysis.Analyzers.2.6.3\build\Microsoft.CodeAnalysis.Analyzers.props'))" />
<Error Condition="!Exists('..\packages\SQLitePCLRaw.lib.e_sqlite3.linux.1.1.2\build\SQLitePCLRaw.lib.e_sqlite3.linux.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\SQLitePCLRaw.lib.e_sqlite3.linux.1.1.2\build\SQLitePCLRaw.lib.e_sqlite3.linux.targets'))" />
<Error Condition="!Exists('..\packages\SQLitePCLRaw.lib.e_sqlite3.osx.1.1.2\build\SQLitePCLRaw.lib.e_sqlite3.osx.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\SQLitePCLRaw.lib.e_sqlite3.osx.1.1.2\build\SQLitePCLRaw.lib.e_sqlite3.osx.targets'))" />
<Error Condition="!Exists('..\packages\SQLitePCLRaw.lib.e_sqlite3.v110_xp.1.1.2\build\SQLitePCLRaw.lib.e_sqlite3.v110_xp.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\SQLitePCLRaw.lib.e_sqlite3.v110_xp.1.1.2\build\SQLitePCLRaw.lib.e_sqlite3.v110_xp.targets'))" />
<Error Condition="!Exists('..\packages\Microsoft.VisualStudio.SDK.EmbedInteropTypes.15.0.16\build\Microsoft.VisualStudio.SDK.EmbedInteropTypes.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.VisualStudio.SDK.EmbedInteropTypes.15.0.16\build\Microsoft.VisualStudio.SDK.EmbedInteropTypes.targets'))" />
<Error Condition="!Exists('..\packages\Microsoft.VisualStudio.Threading.Analyzers.16.0.102\build\Microsoft.VisualStudio.Threading.Analyzers.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.VisualStudio.Threading.Analyzers.16.0.102\build\Microsoft.VisualStudio.Threading.Analyzers.targets'))" />
</Target>
<Import Project="..\packages\Microsoft.VSSDK.BuildTools.15.9.3041\build\Microsoft.VSSDK.BuildTools.targets" Condition="Exists('..\packages\Microsoft.VSSDK.BuildTools.15.9.3041\build\Microsoft.VSSDK.BuildTools.targets')" />
<Import Project="..\packages\Microsoft.VisualStudio.SDK.Analyzers.15.8.33\build\Microsoft.VisualStudio.SDK.Analyzers.targets" Condition="Exists('..\packages\Microsoft.VisualStudio.SDK.Analyzers.15.8.33\build\Microsoft.VisualStudio.SDK.Analyzers.targets')" />
<Import Project="..\packages\SQLitePCLRaw.lib.e_sqlite3.linux.1.1.2\build\SQLitePCLRaw.lib.e_sqlite3.linux.targets" Condition="Exists('..\packages\SQLitePCLRaw.lib.e_sqlite3.linux.1.1.2\build\SQLitePCLRaw.lib.e_sqlite3.linux.targets')" />
<Import Project="..\packages\SQLitePCLRaw.lib.e_sqlite3.osx.1.1.2\build\SQLitePCLRaw.lib.e_sqlite3.osx.targets" Condition="Exists('..\packages\SQLitePCLRaw.lib.e_sqlite3.osx.1.1.2\build\SQLitePCLRaw.lib.e_sqlite3.osx.targets')" />
<Import Project="..\packages\SQLitePCLRaw.lib.e_sqlite3.v110_xp.1.1.2\build\SQLitePCLRaw.lib.e_sqlite3.v110_xp.targets" Condition="Exists('..\packages\SQLitePCLRaw.lib.e_sqlite3.v110_xp.1.1.2\build\SQLitePCLRaw.lib.e_sqlite3.v110_xp.targets')" />
<Import Project="..\packages\Microsoft.VisualStudio.SDK.EmbedInteropTypes.15.0.16\build\Microsoft.VisualStudio.SDK.EmbedInteropTypes.targets" Condition="Exists('..\packages\Microsoft.VisualStudio.SDK.EmbedInteropTypes.15.0.16\build\Microsoft.VisualStudio.SDK.EmbedInteropTypes.targets')" />
<Import Project="..\packages\Microsoft.VisualStudio.Threading.Analyzers.16.0.102\build\Microsoft.VisualStudio.Threading.Analyzers.targets" Condition="Exists('..\packages\Microsoft.VisualStudio.Threading.Analyzers.16.0.102\build\Microsoft.VisualStudio.Threading.Analyzers.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>

Просмотреть файл

@ -0,0 +1,134 @@
using System;
using System.Diagnostics.CodeAnalysis;
using System.Runtime.InteropServices;
using System.Threading;
using EnvDTE;
using Microsoft;
using Microsoft.VisualStudio.Shell;
using Microsoft.VisualStudio.Shell.Interop;
using Task = System.Threading.Tasks.Task;
namespace XAMLator.Client
{
[Guid(PackageGuidString)]
[InstalledProductRegistration("#1110", "#1112", "1.0.3", IconResourceID = 1400)]
[PackageRegistration(UseManagedResourcesOnly = true, AllowsBackgroundLoading = true)]
[ProvideAutoLoad("{ADFC4E64-0397-11D1-9F4E-00A0C911004F}")]
[SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1650:ElementDocumentationMustBeSpelledCorrectly", Justification = "pkgdef, VS and vsixmanifest are valid VS terms")]
public sealed class XAMLatorPackage : AsyncPackage, IIDE
{
public const string PackageGuidString = "9ea65290-6b43-425c-9aeb-328adcf096c9";
private DTE _application;
private SolutionEvents _solutionEvents;
private DocumentEvents _documentEvents;
public event EventHandler<DocumentChangedEventArgs> DocumentChanged;
public void MonitorEditorChanges()
{
Logger.Log("Monitor editor changes.");
}
public void ShowError(string error, Exception ex = null)
{
ThreadHelper.ThrowIfNotOnUIThread();
IVsUIShell shellService = GetService(typeof(SVsUIShell)) as IVsUIShell;
Assumes.Present(shellService);
shellService.ShowMessageBox(
0,
Guid.Empty,
"XAMLator",
error,
string.Empty,
0,
OLEMSGBUTTON.OLEMSGBUTTON_OK,
OLEMSGDEFBUTTON.OLEMSGDEFBUTTON_FIRST,
OLEMSGICON.OLEMSGICON_CRITICAL,
0,
out int result);
if(ex != null)
Logger.Log(ex);
}
public Task RunTarget(string targetName)
{
// TODO:
return Task.FromResult(false);
}
protected override async Task InitializeAsync(CancellationToken cancellationToken, IProgress<ServiceProgressData> progress)
{
Logger.Initialize(this, "XAMLator");
//await JoinableTaskFactory.SwitchToMainThreadAsync(cancellationToken);
DTE serviceAsync = (DTE)await base.GetServiceAsync(typeof(SDTE));
Assumes.Present(serviceAsync);
_documentEvents = serviceAsync.Events.DocumentEvents;
_application = serviceAsync.Application;
_solutionEvents = _application.Events.SolutionEvents;
_solutionEvents.Opened += OnSolutionOpened;
_solutionEvents.AfterClosing += OnSolutionAfterClosing;
Logger.Log("XAMLator initialized.");
XAMLatorMonitor.Init(this);
XAMLatorMonitor.Instance.StartMonitoring();
Logger.Log("XAMLator Start monitoring...");
}
protected override void Dispose(bool disposing)
{
base.Dispose(disposing);
if (disposing)
{
_solutionEvents.Opened -= OnSolutionOpened;
_solutionEvents.AfterClosing -= OnSolutionAfterClosing;
}
}
private void OnSolutionOpened()
{
_documentEvents.DocumentSaved += OnDocumentSaved;
}
private void OnSolutionAfterClosing()
{
_documentEvents.DocumentSaved -= OnDocumentSaved;
}
private async void OnDocumentSaved(Document document)
{
//await JoinableTaskFactory.SwitchToMainThreadAsync(DisposalToken);
try
{
TextDocument textDocument = (TextDocument)document.Object("TextDocument");
string documentName = System.IO.Path.Combine(document.Path, document.Name);
string documentContent = textDocument.StartPoint.CreateEditPoint().GetText(textDocument.EndPoint);
Microsoft.CodeAnalysis.SyntaxTree syntaxTree = null;
Microsoft.CodeAnalysis.SemanticModel semanticModel = null;
DocumentChanged?.Invoke(this, new DocumentChangedEventArgs(
documentName,
documentContent,
syntaxTree,
semanticModel));
Logger.Log("Document saved.");
}
catch(Exception ex)
{
Logger.Log(ex);
}
}
}
}

Просмотреть файл

@ -0,0 +1,63 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.IO.Compression" publicKeyToken="b77a5c561934e089" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.IO.FileSystem" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Security.Cryptography.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.IO.FileSystem.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Xml.XPath.XDocument" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.ValueTuple" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Threading.Thread" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.VisualStudio.Utilities" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-15.0.0.0" newVersion="15.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.VisualStudio.CoreUtility" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-15.0.0.0" newVersion="15.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.VisualStudio.Threading" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-16.0.0.0" newVersion="16.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.VisualStudio.Imaging" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-15.0.0.0" newVersion="15.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.VisualStudio.ComponentModelHost" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-16.0.0.0" newVersion="16.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="StreamJsonRpc" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-1.3.0.0" newVersion="1.3.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" /></startup></configuration>

Просмотреть файл

@ -0,0 +1,101 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.ApplicationInsights" version="2.0.1" targetFramework="net461" />
<package id="Microsoft.CodeAnalysis" version="2.10.0" targetFramework="net4611" />
<package id="Microsoft.CodeAnalysis.Analyzers" version="2.6.3" targetFramework="net461" developmentDependency="true" />
<package id="Microsoft.CodeAnalysis.Common" version="2.10.0" targetFramework="net461" />
<package id="Microsoft.CodeAnalysis.CSharp" version="2.10.0" targetFramework="net461" />
<package id="Microsoft.CodeAnalysis.CSharp.Workspaces" version="2.10.0" targetFramework="net461" />
<package id="Microsoft.CodeAnalysis.VisualBasic" version="2.10.0" targetFramework="net461" />
<package id="Microsoft.CodeAnalysis.VisualBasic.Workspaces" version="2.10.0" targetFramework="net461" />
<package id="Microsoft.CodeAnalysis.Workspaces.Common" version="2.10.0" targetFramework="net461" />
<package id="Microsoft.CodeAnalysis.Workspaces.MSBuild" version="2.10.0" targetFramework="net461" />
<package id="Microsoft.VisualStudio.ComponentModelHost" version="16.0.467" targetFramework="net461" />
<package id="Microsoft.VisualStudio.CoreUtility" version="15.6.27740" targetFramework="net461" />
<package id="Microsoft.VisualStudio.ImageCatalog" version="15.9.28307" targetFramework="net461" />
<package id="Microsoft.VisualStudio.Imaging" version="15.9.28307" targetFramework="net461" />
<package id="Microsoft.VisualStudio.Imaging.Interop.14.0.DesignTime" version="14.3.26930" targetFramework="net461" />
<package id="Microsoft.VisualStudio.LanguageServices" version="2.10.0" targetFramework="net461" />
<package id="Microsoft.VisualStudio.OLE.Interop" version="7.10.6071" targetFramework="net461" />
<package id="Microsoft.VisualStudio.SDK.Analyzers" version="15.8.33" targetFramework="net461" />
<package id="Microsoft.VisualStudio.SDK.EmbedInteropTypes" version="15.0.16" targetFramework="net461" />
<package id="Microsoft.VisualStudio.Shell.15.0" version="15.9.28307" targetFramework="net461" />
<package id="Microsoft.VisualStudio.Shell.Framework" version="15.9.28307" targetFramework="net461" />
<package id="Microsoft.VisualStudio.Shell.Immutable.10.0" version="10.0.30319" targetFramework="net461" />
<package id="Microsoft.VisualStudio.Shell.Immutable.11.0" version="11.0.50727" targetFramework="net461" />
<package id="Microsoft.VisualStudio.Shell.Immutable.12.0" version="12.0.21003" targetFramework="net461" />
<package id="Microsoft.VisualStudio.Shell.Immutable.14.0" version="14.3.25407" targetFramework="net461" />
<package id="Microsoft.VisualStudio.Shell.Interop" version="7.10.6072" targetFramework="net461" />
<package id="Microsoft.VisualStudio.Shell.Interop.10.0" version="10.0.30320" targetFramework="net461" />
<package id="Microsoft.VisualStudio.Shell.Interop.11.0" version="11.0.61031" targetFramework="net461" />
<package id="Microsoft.VisualStudio.Shell.Interop.12.0" version="12.0.30111" targetFramework="net461" />
<package id="Microsoft.VisualStudio.Shell.Interop.14.0.DesignTime" version="14.3.26929" targetFramework="net461" />
<package id="Microsoft.VisualStudio.Shell.Interop.15.3.DesignTime" version="15.0.26929" targetFramework="net461" />
<package id="Microsoft.VisualStudio.Shell.Interop.15.6.DesignTime" version="15.6.27413" targetFramework="net461" />
<package id="Microsoft.VisualStudio.Shell.Interop.8.0" version="8.0.50728" targetFramework="net461" />
<package id="Microsoft.VisualStudio.Shell.Interop.9.0" version="9.0.30730" targetFramework="net461" />
<package id="Microsoft.VisualStudio.Text.Data" version="15.6.27740" targetFramework="net461" />
<package id="Microsoft.VisualStudio.TextManager.Interop" version="7.10.6071" targetFramework="net461" />
<package id="Microsoft.VisualStudio.TextManager.Interop.8.0" version="8.0.50728" targetFramework="net461" />
<package id="Microsoft.VisualStudio.Threading" version="16.0.102" targetFramework="net461" />
<package id="Microsoft.VisualStudio.Threading.Analyzers" version="16.0.102" targetFramework="net461" />
<package id="Microsoft.VisualStudio.Utilities" version="15.9.28307" targetFramework="net461" />
<package id="Microsoft.VisualStudio.Validation" version="15.3.15" targetFramework="net461" />
<package id="Microsoft.VSSDK.BuildTools" version="15.9.3041" targetFramework="net461" developmentDependency="true" />
<package id="Newtonsoft.Json" version="12.0.1" targetFramework="net461" />
<package id="SQLitePCLRaw.bundle_green" version="1.1.2" targetFramework="net461" />
<package id="SQLitePCLRaw.core" version="1.1.2" targetFramework="net461" />
<package id="SQLitePCLRaw.lib.e_sqlite3.linux" version="1.1.2" targetFramework="net461" />
<package id="SQLitePCLRaw.lib.e_sqlite3.osx" version="1.1.2" targetFramework="net461" />
<package id="SQLitePCLRaw.lib.e_sqlite3.v110_xp" version="1.1.2" targetFramework="net461" />
<package id="SQLitePCLRaw.provider.e_sqlite3.net45" version="1.1.2" targetFramework="net461" />
<package id="StreamJsonRpc" version="1.3.23" targetFramework="net461" />
<package id="System.AppContext" version="4.3.0" targetFramework="net461" />
<package id="System.Collections" version="4.3.0" targetFramework="net461" />
<package id="System.Collections.Concurrent" version="4.3.0" targetFramework="net461" />
<package id="System.Collections.Immutable" version="1.5.0" targetFramework="net461" requireReinstallation="true" />
<package id="System.Composition" version="1.0.31" targetFramework="net461" />
<package id="System.Composition.AttributedModel" version="1.0.31" targetFramework="net461" />
<package id="System.Composition.Convention" version="1.0.31" targetFramework="net461" />
<package id="System.Composition.Hosting" version="1.0.31" targetFramework="net461" />
<package id="System.Composition.Runtime" version="1.0.31" targetFramework="net461" />
<package id="System.Composition.TypedParts" version="1.0.31" targetFramework="net461" />
<package id="System.Console" version="4.3.0" targetFramework="net461" />
<package id="System.Diagnostics.Debug" version="4.3.0" targetFramework="net461" />
<package id="System.Diagnostics.FileVersionInfo" version="4.3.0" targetFramework="net461" />
<package id="System.Diagnostics.StackTrace" version="4.3.0" targetFramework="net461" />
<package id="System.Diagnostics.Tools" version="4.3.0" targetFramework="net461" />
<package id="System.Dynamic.Runtime" version="4.3.0" targetFramework="net461" />
<package id="System.Globalization" version="4.3.0" targetFramework="net461" />
<package id="System.IO.Compression" version="4.3.0" targetFramework="net461" />
<package id="System.IO.FileSystem" version="4.3.0" targetFramework="net461" />
<package id="System.IO.FileSystem.Primitives" version="4.3.0" targetFramework="net461" />
<package id="System.Linq" version="4.3.0" targetFramework="net461" />
<package id="System.Linq.Expressions" version="4.3.0" targetFramework="net461" />
<package id="System.Reflection" version="4.3.0" targetFramework="net461" />
<package id="System.Reflection.Metadata" version="1.6.0" targetFramework="net461" requireReinstallation="true" />
<package id="System.Resources.ResourceManager" version="4.3.0" targetFramework="net461" />
<package id="System.Runtime" version="4.3.0" targetFramework="net461" />
<package id="System.Runtime.Extensions" version="4.3.0" targetFramework="net461" />
<package id="System.Runtime.InteropServices" version="4.3.0" targetFramework="net461" />
<package id="System.Runtime.Numerics" version="4.3.0" targetFramework="net461" />
<package id="System.Security.Cryptography.Algorithms" version="4.3.0" targetFramework="net461" requireReinstallation="true" />
<package id="System.Security.Cryptography.Encoding" version="4.3.0" targetFramework="net461" />
<package id="System.Security.Cryptography.Primitives" version="4.3.0" targetFramework="net461" />
<package id="System.Security.Cryptography.X509Certificates" version="4.3.0" targetFramework="net461" requireReinstallation="true" />
<package id="System.Text.Encoding" version="4.3.0" targetFramework="net461" />
<package id="System.Text.Encoding.CodePages" version="4.3.0" targetFramework="net461" />
<package id="System.Text.Encoding.Extensions" version="4.3.0" targetFramework="net461" />
<package id="System.Threading" version="4.3.0" targetFramework="net461" />
<package id="System.Threading.Tasks" version="4.3.0" targetFramework="net461" />
<package id="System.Threading.Tasks.Extensions" version="4.3.0" targetFramework="net461" />
<package id="System.Threading.Tasks.Parallel" version="4.3.0" targetFramework="net461" />
<package id="System.Threading.Thread" version="4.3.0" targetFramework="net461" />
<package id="System.ValueTuple" version="4.3.0" targetFramework="net461" />
<package id="System.Xml.ReaderWriter" version="4.3.0" targetFramework="net461" />
<package id="System.Xml.XDocument" version="4.3.0" targetFramework="net461" />
<package id="System.Xml.XmlDocument" version="4.3.0" targetFramework="net461" />
<package id="System.Xml.XPath" version="4.3.0" targetFramework="net461" />
<package id="System.Xml.XPath.XDocument" version="4.3.0" targetFramework="net461" />
<package id="VsixLogger" version="1.1.44.0" targetFramework="net461" />
</packages>

Просмотреть файл

@ -0,0 +1,22 @@
<?xml version="1.0" ?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="XAMLator.Client.VisualStudio.6c5e279a-0399-42b9-8eaa-906637c0964e" Version="0.1" Language="en-US" Publisher="Javier Suárez Ruiz" />
<DisplayName>XAMLator for Xamarin.Forms</DisplayName>
<Description xml:space="preserve">XAMLator is a live XAML previewer for Xamarin.Forms with partial Hot Reload. Change a XAML view, its code behind or a CSS style sheet in the IDE and you preview it live in your application. It works on iOS simulators, Android emulators and Android real devices!</Description>
<MoreInfo>https://github.com/ylatuya/XAMLator</MoreInfo>
<Tags>XAML, Live, Hot Reload</Tags>
</Metadata>
<Installation>
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[15.0, 16.0)" />
</Installation>
<Dependencies>
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.5,)" />
</Dependencies>
<Assets>
<Asset Type="Microsoft.VisualStudio.Assembly" d:Source="File" Path="Newtonsoft.Json.dll" AssemblyName="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed" />
</Assets>
<Prerequisites>
<Prerequisite Id="Microsoft.VisualStudio.Component.CoreEditor" Version="[15.0,16.0)" DisplayName="Visual Studio core editor" />
</Prerequisites>
</PackageManifest>

Просмотреть файл

@ -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("XAMLator.Core.net4611")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("XAMLator.Core.net4611")]
[assembly: AssemblyCopyright("Copyright © 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("a42dcb75-14d8-4ee0-946e-6ceaf5079851")]
// 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")]

Просмотреть файл

@ -0,0 +1,54 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{A42DCB75-14D8-4EE0-946E-6CEAF5079851}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>XAMLator.Core.Net461</RootNamespace>
<AssemblyName>XAMLator.Core.Net461</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
</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="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.12.0.1\lib\net45\Newtonsoft.Json.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.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<Import Project="..\XAMLator.Core\XAMLator.Core.projitems" Label="Shared" />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

Просмотреть файл

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Newtonsoft.Json" version="12.0.1" targetFramework="net4611" />
</packages>

0
XAMLator.Server.Droid/Resources/Resource.designer.cs сгенерированный Normal file
Просмотреть файл

Просмотреть файл

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\packages\Xamarin.Forms.3.2.0.839982\build\netstandard2.0\Xamarin.Forms.props" Condition="Exists('..\packages\Xamarin.Forms.3.2.0.839982\build\netstandard2.0\Xamarin.Forms.props')" />
<Import Project="..\packages\Xamarin.Forms.3.0.0.446417 \build\netstandard2.0\Xamarin.Forms.props" Condition="Exists('..\packages\Xamarin.Forms.3.0.0.446417 \build\netstandard2.0\Xamarin.Forms.props')" />
@ -25,7 +25,8 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AndroidLinkMode>None</AndroidLinkMode>
<JavaMaximumHeapSize></JavaMaximumHeapSize>
<JavaMaximumHeapSize>
</JavaMaximumHeapSize>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
@ -36,20 +37,23 @@
<WarningLevel>4</WarningLevel>
<AndroidManagedSymbols>true</AndroidManagedSymbols>
<AndroidUseSharedRuntime>false</AndroidUseSharedRuntime>
<JavaMaximumHeapSize></JavaMaximumHeapSize>
<JavaMaximumHeapSize>
</JavaMaximumHeapSize>
<ConsolePause>true</ConsolePause>
<AndroidSigningKeyAlias></AndroidSigningKeyAlias>
<AndroidSigningKeyPass></AndroidSigningKeyPass>
<AndroidSigningKeyAlias>
</AndroidSigningKeyAlias>
<AndroidSigningKeyPass>
</AndroidSigningKeyPass>
</PropertyGroup>
<ItemGroup>
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.12.0.1\lib\netstandard2.0\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
<Reference Include="Mono.Android" />
<Reference Include="Mono.CSharp" />
<Reference Include="Newtonsoft.Json">
<HintPath>..\packages\Newtonsoft.Json.9.0.1\lib\portable-net45+wp80+win8+wpa81\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System.Net.Http" />
<Reference Include="Xamarin.Android.Support.Annotations">
<HintPath>..\packages\Xamarin.Android.Support.Annotations.27.0.2\lib\MonoAndroid81\Xamarin.Android.Support.Annotations.dll</HintPath>
@ -156,4 +160,4 @@
<Import Project="..\packages\Xamarin.Android.Support.Design.27.0.2\build\MonoAndroid81\Xamarin.Android.Support.Design.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Design.27.0.2\build\MonoAndroid81\Xamarin.Android.Support.Design.targets')" />
<Import Project="..\packages\Xamarin.Android.Support.v7.MediaRouter.27.0.2\build\MonoAndroid81\Xamarin.Android.Support.v7.MediaRouter.targets" Condition="Exists('..\packages\Xamarin.Android.Support.v7.MediaRouter.27.0.2\build\MonoAndroid81\Xamarin.Android.Support.v7.MediaRouter.targets')" />
<Import Project="..\packages\Xamarin.Forms.3.2.0.839982\build\netstandard2.0\Xamarin.Forms.targets" Condition="Exists('..\packages\Xamarin.Forms.3.2.0.839982\build\netstandard2.0\Xamarin.Forms.targets')" />
</Project>
</Project>

Просмотреть файл

@ -1,24 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Arch.Core.Common" version="1.0.0" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Arch.Lifecycle.Common" version="1.0.3" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Arch.Lifecycle.Runtime" version="1.0.3" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.Animated.Vector.Drawable" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.Annotations" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.Compat" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.Core.UI" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.Core.Utils" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.Design" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.Fragment" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.Media.Compat" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.Transition" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.v4" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.v7.AppCompat" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.v7.CardView" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.v7.MediaRouter" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.v7.Palette" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.v7.RecyclerView" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.Vector.Drawable" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Forms" version="3.2.0.839982" targetFramework="monoandroid90" />
<package id="Newtonsoft.Json" version="12.0.1" targetFramework="monoandroid81" />
<package id="Xamarin.Android.Arch.Core.Common" version="1.0.0" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Arch.Lifecycle.Common" version="1.0.3" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Arch.Lifecycle.Runtime" version="1.0.3" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.Animated.Vector.Drawable" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.Annotations" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.Compat" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.Core.UI" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.Core.Utils" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.Design" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.Fragment" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.Media.Compat" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.Transition" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.v4" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.v7.AppCompat" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.v7.CardView" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.v7.MediaRouter" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.v7.Palette" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.v7.RecyclerView" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Android.Support.Vector.Drawable" version="27.0.2" targetFramework="monoandroid90" />
<package id="Xamarin.Forms" version="3.2.0.839982" targetFramework="monoandroid90" />
</packages>

Просмотреть файл

@ -31,11 +31,13 @@
<ConsolePause>false</ConsolePause>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="Mono.CSharp" />
<Reference Include="Newtonsoft.Json">
<HintPath>..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
<Reference Include="Mono.CSharp, Version=4.0.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
<HintPath>..\packages\Mono.CSharp.4.0.0.143\lib\4.5\Mono.CSharp.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.12.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Net.Http" />
<Reference Include="Xamarin.Forms.Core">
<HintPath>..\packages\Xamarin.Forms.3.2.0.839982\lib\netstandard2.0\Xamarin.Forms.Core.dll</HintPath>
@ -60,4 +62,4 @@
<Import Project="..\XAMLator.Core\XAMLator.Core.projitems" Label="Shared" Condition="Exists('..\XAMLator.Core\XAMLator.Core.projitems')" />
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="..\packages\Xamarin.Forms.3.2.0.839982\build\netstandard2.0\Xamarin.Forms.targets" Condition="Exists('..\packages\Xamarin.Forms.3.2.0.839982\build\netstandard2.0\Xamarin.Forms.targets')" />
</Project>
</Project>

Просмотреть файл

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net461" />
<package id="Xamarin.Forms" version="3.2.0.839982" targetFramework="net461" />
<package id="Mono.CSharp" version="4.0.0.143" targetFramework="net461" />
<package id="Newtonsoft.Json" version="12.0.1" targetFramework="net461" />
<package id="Xamarin.Forms" version="3.2.0.839982" targetFramework="net461" />
</packages>

Просмотреть файл

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\XAMLator.Client\XAMLator.Client.projitems" Label="Shared" Condition="Exists('..\XAMLator.Client\XAMLator.Client.projitems')" />
<Import Project="..\packages\Xamarin.Forms.3.4.0.1008975\build\Xamarin.Forms.props" Condition="Exists('..\packages\Xamarin.Forms.3.4.0.1008975\build\Xamarin.Forms.props')" />
@ -230,6 +230,7 @@
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
<None Include="packages.config" />
<None Include="webkit-sharp.dll.config" />
<None Include="OpenTK.dll.config" />
@ -239,4 +240,4 @@
<Import Project="..\packages\SQLitePCLRaw.lib.e_sqlite3.osx.1.1.2\build\SQLitePCLRaw.lib.e_sqlite3.osx.targets" Condition="Exists('..\packages\SQLitePCLRaw.lib.e_sqlite3.osx.1.1.2\build\SQLitePCLRaw.lib.e_sqlite3.osx.targets')" />
<Import Project="..\packages\SQLitePCLRaw.lib.e_sqlite3.v110_xp.1.1.2\build\SQLitePCLRaw.lib.e_sqlite3.v110_xp.targets" Condition="Exists('..\packages\SQLitePCLRaw.lib.e_sqlite3.v110_xp.1.1.2\build\SQLitePCLRaw.lib.e_sqlite3.v110_xp.targets')" />
<Import Project="..\packages\Xamarin.Forms.3.4.0.1008975\build\Xamarin.Forms.targets" Condition="Exists('..\packages\Xamarin.Forms.3.4.0.1008975\build\Xamarin.Forms.targets')" />
</Project>
</Project>

Просмотреть файл

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>

Просмотреть файл

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\packages\Xamarin.Forms.3.2.0.839982\build\netstandard2.0\Xamarin.Forms.props" Condition="Exists('..\packages\Xamarin.Forms.3.2.0.839982\build\netstandard2.0\Xamarin.Forms.props')" />
<Import Project="..\packages\Xamarin.Forms.3.0.0.446417 \build\netstandard2.0\Xamarin.Forms.props" Condition="Exists('..\packages\Xamarin.Forms.3.0.0.446417 \build\netstandard2.0\Xamarin.Forms.props')" />
@ -27,31 +27,35 @@
<IOSDebuggerPort>64330</IOSDebuggerPort>
<MtouchHttpClientHandler>NSUrlSessionHandler</MtouchHttpClientHandler>
<DeviceSpecificBuild>false</DeviceSpecificBuild>
<MtouchVerbosity></MtouchVerbosity>
<MtouchLink></MtouchLink>
<MtouchVerbosity>
</MtouchVerbosity>
<MtouchLink>
</MtouchLink>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<DefineConstants></DefineConstants>
<DefineConstants>
</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodesignKey>iPhone Developer</CodesignKey>
<MtouchNoSymbolStrip>true</MtouchNoSymbolStrip>
<MtouchLink>SdkOnly</MtouchLink>
<MtouchHttpClientHandler>NSUrlSessionHandler</MtouchHttpClientHandler>
<MtouchVerbosity></MtouchVerbosity>
<MtouchVerbosity>
</MtouchVerbosity>
</PropertyGroup>
<ItemGroup>
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.12.0.1\lib\netstandard2.0\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
<Reference Include="Xamarin.iOS" />
<Reference Include="Mono.CSharp" />
<Reference Include="Newtonsoft.Json">
<HintPath>..\packages\Newtonsoft.Json.9.0.1\lib\portable-net45+wp80+win8+wpa81\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System.Net.Http" />
<Reference Include="Xamarin.Forms.Core">
<HintPath>..\packages\Xamarin.Forms.3.2.0.839982\lib\Xamarin.iOS10\Xamarin.Forms.Core.dll</HintPath>
@ -79,4 +83,4 @@
<Import Project="..\XAMLator.Core\XAMLator.Core.projitems" Label="Shared" Condition="Exists('..\XAMLator.Core\XAMLator.Core.projitems')" />
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
<Import Project="..\packages\Xamarin.Forms.3.2.0.839982\build\netstandard2.0\Xamarin.Forms.targets" Condition="Exists('..\packages\Xamarin.Forms.3.2.0.839982\build\netstandard2.0\Xamarin.Forms.targets')" />
</Project>
</Project>

Просмотреть файл

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="xamarinios10" />
<package id="Xamarin.Forms" version="3.2.0.839982" targetFramework="xamarinios10" />
<package id="Newtonsoft.Json" version="12.0.1" targetFramework="xamarinios10" />
<package id="Xamarin.Forms" version="3.2.0.839982" targetFramework="xamarinios10" />
</packages>

Просмотреть файл

@ -21,7 +21,7 @@
<Compile Remove="VM.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="2.9.0" />
<PackageReference Include="Xamarin.Forms" Version="3.2.0.839982" />
</ItemGroup>

Просмотреть файл

@ -1,6 +1,7 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.28307.489
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XAMLator.Client.MonoDevelop", "XAMLator.Client.MonoDevelop\XAMLator.Client.MonoDevelop.csproj", "{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "XAMLator.Client", "XAMLator.Client\XAMLator.Client.shproj", "{188F8020-6474-43BA-A6E7-0947C385B54C}"
@ -23,7 +24,7 @@ Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "XAMLator.SampleApp", "Sampl
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XAMLator.SampleApp.Gtk", "SampleApp\XAMLator.SampleApp.Gtk\XAMLator.SampleApp.Gtk.csproj", "{040C0E99-7128-4968-AB57-47E3CBFBF2BD}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XAMLator.Server.Roslyn", "XAMLator.Server\XAMLator.Server.Roslyn.csproj", "{9A749589-5DAE-4296-A4FA-B74F2D31C759}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "XAMLator.Server.Roslyn", "XAMLator.Server\XAMLator.Server.Roslyn.csproj", "{9A749589-5DAE-4296-A4FA-B74F2D31C759}"
EndProject
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "XAMLator.Server.Shared", "XAMLator.Server.Shared\XAMLator.Server.Shared.shproj", "{A2330E63-09C1-43FD-BBE3-8699F5D62888}"
EndProject
@ -45,232 +46,452 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XAMLator.Server.Mono.Mac",
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XAMLator.Server.Tests", "XAMLator.Server.Tests\XAMLator.Server.Tests.csproj", "{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XAMLator.Client.VisualStudio", "XAMLator.Client.VisualStudio\XAMLator.Client.VisualStudio.csproj", "{4F503379-98F6-4D3E-8751-EE23139BF354}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XAMLator.Client.Net461", "XAMLator.Client.Net461\XAMLator.Client.Net461.csproj", "{C5B4A4A3-7346-4B77-AD03-839116FAFAC3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XAMLator.Core.Net461", "XAMLator.Core.Net461\XAMLator.Core.Net461.csproj", "{A42DCB75-14D8-4EE0-946E-6CEAF5079851}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XAMLator.SampleApp.WPF", "SampleApp\XAMLator.SampleApp.WPF\XAMLator.SampleApp.WPF.csproj", "{4E54641B-D109-4A35-AAE7-19DE65E07F7C}"
EndProject
Global
GlobalSection(SharedMSBuildProjectFiles) = preSolution
XAMLator.Client\XAMLator.Client.projitems*{188f8020-6474-43ba-a6e7-0947c385b54c}*SharedItemsImports = 13
XAMLator.Core\XAMLator.Core.projitems*{20c03245-0672-4153-809c-a99f2307b9e9}*SharedItemsImports = 13
SampleApp\XAMLator.SampleApp\XAMLator.SampleApp.projitems*{4e54641b-d109-4a35-aae7-19de65e07f7c}*SharedItemsImports = 4
XAMLator.Client\XAMLator.Client.projitems*{55bcf24d-7424-4c5e-ad72-bb34f217ebdf}*SharedItemsImports = 4
SampleApp\XAMLator.SampleApp\XAMLator.SampleApp.projitems*{8115e626-b954-42ae-9a4c-889afd311912}*SharedItemsImports = 13
XAMLator.Core\XAMLator.Core.projitems*{8634d953-84bf-4bbd-873b-b4339beea7bf}*SharedItemsImports = 4
XAMLator.Server.Shared\XAMLator.Server.Shared.projitems*{8634d953-84bf-4bbd-873b-b4339beea7bf}*SharedItemsImports = 4
XAMLator.Core\XAMLator.Core.projitems*{9f60986f-4549-436a-9467-8718ffe84cce}*SharedItemsImports = 4
XAMLator.Server.Shared\XAMLator.Server.Shared.projitems*{9f60986f-4549-436a-9467-8718ffe84cce}*SharedItemsImports = 4
XAMLator.Server.Shared\XAMLator.Server.Shared.projitems*{a2330e63-09c1-43fd-bbe3-8699f5d62888}*SharedItemsImports = 13
XAMLator.Core\XAMLator.Core.projitems*{a42dcb75-14d8-4ee0-946e-6ceaf5079851}*SharedItemsImports = 4
SampleApp\XAMLator.SampleApp\XAMLator.SampleApp.projitems*{a8af73a1-e1a1-40ef-943e-4fbf475b0c8a}*SharedItemsImports = 4
XAMLator.Client\XAMLator.Client.projitems*{c5b4a4a3-7346-4b77-ad03-839116fafac3}*SharedItemsImports = 4
SampleApp\XAMLator.SampleApp\XAMLator.SampleApp.projitems*{da1a4802-05fa-496a-862d-74fc8b0fd5ca}*SharedItemsImports = 4
XAMLator.Core\XAMLator.Core.projitems*{e3f80adc-71f8-454e-ba3b-87bd0d78b051}*SharedItemsImports = 4
XAMLator.Server.Shared\XAMLator.Server.Shared.projitems*{e3f80adc-71f8-454e-ba3b-87bd0d78b051}*SharedItemsImports = 4
EndGlobalSection
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
Debug|iPhoneSimulator = Debug|iPhoneSimulator
Release|iPhoneSimulator = Release|iPhoneSimulator
Debug|iPhone = Debug|iPhone
Release|iPhone = Release|iPhone
Ad-Hoc|Any CPU = Ad-Hoc|Any CPU
Ad-Hoc|iPhone = Ad-Hoc|iPhone
Ad-Hoc|iPhoneSimulator = Ad-Hoc|iPhoneSimulator
AppStore|Any CPU = AppStore|Any CPU
AppStore|iPhone = AppStore|iPhone
AppStore|iPhoneSimulator = AppStore|iPhoneSimulator
Debug|Any CPU = Debug|Any CPU
Debug|iPhone = Debug|iPhone
Debug|iPhoneSimulator = Debug|iPhoneSimulator
Release|Any CPU = Release|Any CPU
Release|iPhone = Release|iPhone
Release|iPhoneSimulator = Release|iPhoneSimulator
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.Release|Any CPU.Build.0 = Release|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.Debug|iPhone.Build.0 = Debug|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.Release|iPhone.ActiveCfg = Release|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.Release|iPhone.Build.0 = Release|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.AppStore|iPhone.Build.0 = Debug|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Release|Any CPU.Build.0 = Release|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Debug|iPhone.Build.0 = Debug|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Release|iPhone.ActiveCfg = Release|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Release|iPhone.Build.0 = Release|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.Debug|iPhone.Build.0 = Debug|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.Release|Any CPU.Build.0 = Release|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.Release|iPhone.ActiveCfg = Release|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.Release|iPhone.Build.0 = Release|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.AppStore|Any CPU.Build.0 = Release|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.AppStore|iPhone.Build.0 = Debug|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Release|Any CPU.Build.0 = Release|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Debug|iPhone.Build.0 = Debug|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Release|iPhone.ActiveCfg = Release|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Release|iPhone.Build.0 = Release|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Debug|iPhone.Build.0 = Debug|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Release|Any CPU.Build.0 = Release|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Release|iPhone.ActiveCfg = Release|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Release|iPhone.Build.0 = Release|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{9F60986F-4549-436A-9467-8718FFE84CCE}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.AppStore|Any CPU.Build.0 = Release|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.AppStore|iPhone.Build.0 = Debug|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Release|Any CPU.Build.0 = Release|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Debug|iPhone.Build.0 = Debug|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Release|iPhone.ActiveCfg = Release|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Release|iPhone.Build.0 = Release|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Debug|iPhone.Build.0 = Debug|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Release|Any CPU.Build.0 = Release|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Release|iPhone.ActiveCfg = Release|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Release|iPhone.Build.0 = Release|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{8634D953-84BF-4BBD-873B-B4339BEEA7BF}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Ad-Hoc|Any CPU.Deploy.0 = Release|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Release|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.AppStore|Any CPU.Build.0 = Release|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.AppStore|Any CPU.Deploy.0 = Release|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.AppStore|iPhone.Build.0 = Debug|Any CPU
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.Debug|Any CPU.ActiveCfg = Debug|iPhoneSimulator
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.Debug|Any CPU.Build.0 = Debug|iPhoneSimulator
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.Release|Any CPU.ActiveCfg = Release|iPhoneSimulator
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.Release|Any CPU.Build.0 = Release|iPhoneSimulator
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.Debug|iPhone.ActiveCfg = Debug|iPhone
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.Debug|iPhone.Build.0 = Debug|iPhone
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.Release|iPhone.ActiveCfg = Release|iPhone
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.Release|iPhone.Build.0 = Release|iPhone
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.AppStore|iPhoneSimulator.Deploy.0 = Release|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Debug|iPhone.Build.0 = Debug|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Release|Any CPU.Build.0 = Release|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Release|iPhone.ActiveCfg = Release|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Release|iPhone.Build.0 = Release|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.Ad-Hoc|Any CPU.ActiveCfg = Ad-Hoc|iPhoneSimulator
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.Ad-Hoc|iPhone.ActiveCfg = Ad-Hoc|iPhone
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.Ad-Hoc|iPhone.Build.0 = Ad-Hoc|iPhone
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Ad-Hoc|iPhoneSimulator
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.Ad-Hoc|iPhoneSimulator.Build.0 = Ad-Hoc|iPhoneSimulator
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.AppStore|Any CPU.ActiveCfg = AppStore|iPhoneSimulator
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.AppStore|iPhone.ActiveCfg = AppStore|iPhone
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.AppStore|iPhone.Build.0 = AppStore|iPhone
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.Release|Any CPU.Build.0 = Release|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.Debug|iPhone.Build.0 = Debug|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.Release|iPhone.ActiveCfg = Release|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.Release|iPhone.Build.0 = Release|Any CPU
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.AppStore|iPhoneSimulator.ActiveCfg = AppStore|iPhoneSimulator
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.AppStore|iPhoneSimulator.Build.0 = AppStore|iPhoneSimulator
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.Debug|Any CPU.ActiveCfg = Debug|iPhoneSimulator
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.Debug|Any CPU.Build.0 = Debug|iPhoneSimulator
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.Debug|iPhone.ActiveCfg = Debug|iPhone
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.Debug|iPhone.Build.0 = Debug|iPhone
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.Release|Any CPU.ActiveCfg = Release|iPhoneSimulator
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.Release|Any CPU.Build.0 = Release|iPhoneSimulator
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.Release|iPhone.ActiveCfg = Release|iPhone
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.Release|iPhone.Build.0 = Release|iPhone
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.Ad-Hoc|Any CPU.ActiveCfg = Debug|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.AppStore|Any CPU.ActiveCfg = Debug|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.AppStore|iPhone.ActiveCfg = Release|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.AppStore|iPhone.Build.0 = Release|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Release|Any CPU.Build.0 = Release|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Debug|iPhone.Build.0 = Debug|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Release|iPhone.ActiveCfg = Release|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Release|iPhone.Build.0 = Release|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.AppStore|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.Debug|iPhone.Build.0 = Debug|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.Release|Any CPU.Build.0 = Release|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.Release|iPhone.ActiveCfg = Release|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.Release|iPhone.Build.0 = Release|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{040C0E99-7128-4968-AB57-47E3CBFBF2BD}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Ad-Hoc|Any CPU.ActiveCfg = Debug|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Ad-Hoc|Any CPU.Build.0 = Debug|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Ad-Hoc|iPhoneSimulator.Build.0 = Debug|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.AppStore|Any CPU.ActiveCfg = Debug|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.AppStore|Any CPU.Build.0 = Debug|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.AppStore|iPhone.ActiveCfg = Release|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.AppStore|iPhone.Build.0 = Release|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Release|Any CPU.Build.0 = Release|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Debug|iPhone.Build.0 = Debug|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Release|iPhone.ActiveCfg = Release|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Release|iPhone.Build.0 = Release|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.AppStore|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.AppStore|iPhoneSimulator.Build.0 = Debug|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Debug|iPhone.Build.0 = Debug|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Release|Any CPU.Build.0 = Release|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Release|iPhone.ActiveCfg = Release|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Release|iPhone.Build.0 = Release|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{9A749589-5DAE-4296-A4FA-B74F2D31C759}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.AppStore|Any CPU.Build.0 = Release|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.AppStore|iPhone.Build.0 = Debug|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.Debug|Any CPU.Build.0 = Debug|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.Release|Any CPU.ActiveCfg = Release|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.Release|Any CPU.Build.0 = Release|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.Debug|iPhone.Build.0 = Debug|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.Release|iPhone.ActiveCfg = Release|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.Release|iPhone.Build.0 = Release|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Debug|iPhone.Build.0 = Debug|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Release|Any CPU.Build.0 = Release|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Release|iPhone.ActiveCfg = Release|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Release|iPhone.Build.0 = Release|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{E3F80ADC-71F8-454E-BA3B-87BD0D78B051}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.AppStore|iPhone.Build.0 = Debug|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Release|Any CPU.Build.0 = Release|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Debug|iPhone.Build.0 = Debug|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Release|iPhone.ActiveCfg = Release|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Release|iPhone.Build.0 = Release|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.Debug|Any CPU.Build.0 = Debug|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.Debug|iPhone.Build.0 = Debug|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.Release|Any CPU.ActiveCfg = Release|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.Release|Any CPU.Build.0 = Release|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.Release|iPhone.ActiveCfg = Release|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.Release|iPhone.Build.0 = Release|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{38A78D6E-B617-4162-A0BE-EFE260E9C076}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.AppStore|Any CPU.Build.0 = Release|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.AppStore|iPhone.Build.0 = Debug|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Release|Any CPU.Build.0 = Release|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Debug|iPhone.Build.0 = Debug|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Release|iPhone.ActiveCfg = Release|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Release|iPhone.Build.0 = Release|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Debug|iPhone.Build.0 = Debug|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Release|Any CPU.Build.0 = Release|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Release|iPhone.ActiveCfg = Release|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Release|iPhone.Build.0 = Release|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{FA699AFA-1165-40C0-AA59-BB63DA16A1B8}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.AppStore|Any CPU.Build.0 = Release|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.AppStore|iPhone.Build.0 = Debug|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.Release|Any CPU.Build.0 = Release|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.Debug|iPhone.Build.0 = Debug|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.Release|iPhone.ActiveCfg = Release|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.Release|iPhone.Build.0 = Release|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Debug|iPhone.Build.0 = Debug|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Release|Any CPU.Build.0 = Release|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Release|iPhone.ActiveCfg = Release|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Release|iPhone.Build.0 = Release|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{B960F8D7-25B3-46E9-A95C-E539192B5744}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.AppStore|iPhone.Build.0 = Debug|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Release|Any CPU.Build.0 = Release|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Debug|iPhone.Build.0 = Debug|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Release|iPhone.ActiveCfg = Release|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Release|iPhone.Build.0 = Release|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.Debug|iPhone.Build.0 = Debug|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.Release|Any CPU.Build.0 = Release|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.Release|iPhone.ActiveCfg = Release|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.Release|iPhone.Build.0 = Release|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{47C93CC1-2606-4130-922A-A1B2895E895E}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.AppStore|Any CPU.Build.0 = Release|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.AppStore|iPhone.Build.0 = Debug|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Debug|iPhone.Build.0 = Debug|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Release|Any CPU.Build.0 = Release|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Release|iPhone.ActiveCfg = Release|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Release|iPhone.Build.0 = Release|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{4F503379-98F6-4D3E-8751-EE23139BF354}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
{4F503379-98F6-4D3E-8751-EE23139BF354}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
{4F503379-98F6-4D3E-8751-EE23139BF354}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
{4F503379-98F6-4D3E-8751-EE23139BF354}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
{4F503379-98F6-4D3E-8751-EE23139BF354}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
{4F503379-98F6-4D3E-8751-EE23139BF354}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
{4F503379-98F6-4D3E-8751-EE23139BF354}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
{4F503379-98F6-4D3E-8751-EE23139BF354}.AppStore|Any CPU.Build.0 = Release|Any CPU
{4F503379-98F6-4D3E-8751-EE23139BF354}.AppStore|iPhone.ActiveCfg = Release|Any CPU
{4F503379-98F6-4D3E-8751-EE23139BF354}.AppStore|iPhone.Build.0 = Release|Any CPU
{4F503379-98F6-4D3E-8751-EE23139BF354}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
{4F503379-98F6-4D3E-8751-EE23139BF354}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
{4F503379-98F6-4D3E-8751-EE23139BF354}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4F503379-98F6-4D3E-8751-EE23139BF354}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4F503379-98F6-4D3E-8751-EE23139BF354}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{4F503379-98F6-4D3E-8751-EE23139BF354}.Debug|iPhone.Build.0 = Debug|Any CPU
{4F503379-98F6-4D3E-8751-EE23139BF354}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{4F503379-98F6-4D3E-8751-EE23139BF354}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{4F503379-98F6-4D3E-8751-EE23139BF354}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4F503379-98F6-4D3E-8751-EE23139BF354}.Release|Any CPU.Build.0 = Release|Any CPU
{4F503379-98F6-4D3E-8751-EE23139BF354}.Release|iPhone.ActiveCfg = Release|Any CPU
{4F503379-98F6-4D3E-8751-EE23139BF354}.Release|iPhone.Build.0 = Release|Any CPU
{4F503379-98F6-4D3E-8751-EE23139BF354}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{4F503379-98F6-4D3E-8751-EE23139BF354}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{C5B4A4A3-7346-4B77-AD03-839116FAFAC3}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
{C5B4A4A3-7346-4B77-AD03-839116FAFAC3}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
{C5B4A4A3-7346-4B77-AD03-839116FAFAC3}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
{C5B4A4A3-7346-4B77-AD03-839116FAFAC3}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
{C5B4A4A3-7346-4B77-AD03-839116FAFAC3}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
{C5B4A4A3-7346-4B77-AD03-839116FAFAC3}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
{C5B4A4A3-7346-4B77-AD03-839116FAFAC3}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
{C5B4A4A3-7346-4B77-AD03-839116FAFAC3}.AppStore|Any CPU.Build.0 = Release|Any CPU
{C5B4A4A3-7346-4B77-AD03-839116FAFAC3}.AppStore|iPhone.ActiveCfg = Release|Any CPU
{C5B4A4A3-7346-4B77-AD03-839116FAFAC3}.AppStore|iPhone.Build.0 = Release|Any CPU
{C5B4A4A3-7346-4B77-AD03-839116FAFAC3}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
{C5B4A4A3-7346-4B77-AD03-839116FAFAC3}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
{C5B4A4A3-7346-4B77-AD03-839116FAFAC3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C5B4A4A3-7346-4B77-AD03-839116FAFAC3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C5B4A4A3-7346-4B77-AD03-839116FAFAC3}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{C5B4A4A3-7346-4B77-AD03-839116FAFAC3}.Debug|iPhone.Build.0 = Debug|Any CPU
{C5B4A4A3-7346-4B77-AD03-839116FAFAC3}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{C5B4A4A3-7346-4B77-AD03-839116FAFAC3}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{C5B4A4A3-7346-4B77-AD03-839116FAFAC3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C5B4A4A3-7346-4B77-AD03-839116FAFAC3}.Release|Any CPU.Build.0 = Release|Any CPU
{C5B4A4A3-7346-4B77-AD03-839116FAFAC3}.Release|iPhone.ActiveCfg = Release|Any CPU
{C5B4A4A3-7346-4B77-AD03-839116FAFAC3}.Release|iPhone.Build.0 = Release|Any CPU
{C5B4A4A3-7346-4B77-AD03-839116FAFAC3}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{C5B4A4A3-7346-4B77-AD03-839116FAFAC3}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{A42DCB75-14D8-4EE0-946E-6CEAF5079851}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
{A42DCB75-14D8-4EE0-946E-6CEAF5079851}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
{A42DCB75-14D8-4EE0-946E-6CEAF5079851}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
{A42DCB75-14D8-4EE0-946E-6CEAF5079851}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
{A42DCB75-14D8-4EE0-946E-6CEAF5079851}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
{A42DCB75-14D8-4EE0-946E-6CEAF5079851}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
{A42DCB75-14D8-4EE0-946E-6CEAF5079851}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
{A42DCB75-14D8-4EE0-946E-6CEAF5079851}.AppStore|Any CPU.Build.0 = Release|Any CPU
{A42DCB75-14D8-4EE0-946E-6CEAF5079851}.AppStore|iPhone.ActiveCfg = Release|Any CPU
{A42DCB75-14D8-4EE0-946E-6CEAF5079851}.AppStore|iPhone.Build.0 = Release|Any CPU
{A42DCB75-14D8-4EE0-946E-6CEAF5079851}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
{A42DCB75-14D8-4EE0-946E-6CEAF5079851}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
{A42DCB75-14D8-4EE0-946E-6CEAF5079851}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A42DCB75-14D8-4EE0-946E-6CEAF5079851}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A42DCB75-14D8-4EE0-946E-6CEAF5079851}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{A42DCB75-14D8-4EE0-946E-6CEAF5079851}.Debug|iPhone.Build.0 = Debug|Any CPU
{A42DCB75-14D8-4EE0-946E-6CEAF5079851}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{A42DCB75-14D8-4EE0-946E-6CEAF5079851}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{A42DCB75-14D8-4EE0-946E-6CEAF5079851}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A42DCB75-14D8-4EE0-946E-6CEAF5079851}.Release|Any CPU.Build.0 = Release|Any CPU
{A42DCB75-14D8-4EE0-946E-6CEAF5079851}.Release|iPhone.ActiveCfg = Release|Any CPU
{A42DCB75-14D8-4EE0-946E-6CEAF5079851}.Release|iPhone.Build.0 = Release|Any CPU
{A42DCB75-14D8-4EE0-946E-6CEAF5079851}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{A42DCB75-14D8-4EE0-946E-6CEAF5079851}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{4E54641B-D109-4A35-AAE7-19DE65E07F7C}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
{4E54641B-D109-4A35-AAE7-19DE65E07F7C}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
{4E54641B-D109-4A35-AAE7-19DE65E07F7C}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
{4E54641B-D109-4A35-AAE7-19DE65E07F7C}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
{4E54641B-D109-4A35-AAE7-19DE65E07F7C}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
{4E54641B-D109-4A35-AAE7-19DE65E07F7C}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
{4E54641B-D109-4A35-AAE7-19DE65E07F7C}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
{4E54641B-D109-4A35-AAE7-19DE65E07F7C}.AppStore|Any CPU.Build.0 = Release|Any CPU
{4E54641B-D109-4A35-AAE7-19DE65E07F7C}.AppStore|iPhone.ActiveCfg = Release|Any CPU
{4E54641B-D109-4A35-AAE7-19DE65E07F7C}.AppStore|iPhone.Build.0 = Release|Any CPU
{4E54641B-D109-4A35-AAE7-19DE65E07F7C}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
{4E54641B-D109-4A35-AAE7-19DE65E07F7C}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
{4E54641B-D109-4A35-AAE7-19DE65E07F7C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4E54641B-D109-4A35-AAE7-19DE65E07F7C}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4E54641B-D109-4A35-AAE7-19DE65E07F7C}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{4E54641B-D109-4A35-AAE7-19DE65E07F7C}.Debug|iPhone.Build.0 = Debug|Any CPU
{4E54641B-D109-4A35-AAE7-19DE65E07F7C}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{4E54641B-D109-4A35-AAE7-19DE65E07F7C}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{4E54641B-D109-4A35-AAE7-19DE65E07F7C}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4E54641B-D109-4A35-AAE7-19DE65E07F7C}.Release|Any CPU.Build.0 = Release|Any CPU
{4E54641B-D109-4A35-AAE7-19DE65E07F7C}.Release|iPhone.ActiveCfg = Release|Any CPU
{4E54641B-D109-4A35-AAE7-19DE65E07F7C}.Release|iPhone.Build.0 = Release|Any CPU
{4E54641B-D109-4A35-AAE7-19DE65E07F7C}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{4E54641B-D109-4A35-AAE7-19DE65E07F7C}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{188F8020-6474-43BA-A6E7-0947C385B54C} = {72DE5BCD-BB42-41E2-916A-EEA0B7569529}
{FDFD3A07-1788-4C3F-A9D0-D67F4DEA6919} = {72DE5BCD-BB42-41E2-916A-EEA0B7569529}
{8634D953-84BF-4BBD-873B-B4339BEEA7BF} = {38F4F699-609F-4894-8D3F-1BA1283DAE91}
{188F8020-6474-43BA-A6E7-0947C385B54C} = {72DE5BCD-BB42-41E2-916A-EEA0B7569529}
{9F60986F-4549-436A-9467-8718FFE84CCE} = {38F4F699-609F-4894-8D3F-1BA1283DAE91}
{8634D953-84BF-4BBD-873B-B4339BEEA7BF} = {38F4F699-609F-4894-8D3F-1BA1283DAE91}
{A8AF73A1-E1A1-40EF-943E-4FBF475B0C8A} = {AD001C27-B88F-45AD-8297-DB5FE21C6DE7}
{DA1A4802-05FA-496A-862D-74FC8B0FD5CA} = {AD001C27-B88F-45AD-8297-DB5FE21C6DE7}
{8115E626-B954-42AE-9A4C-889AFD311912} = {AD001C27-B88F-45AD-8297-DB5FE21C6DE7}
@ -283,6 +504,12 @@ Global
{B960F8D7-25B3-46E9-A95C-E539192B5744} = {A2B90814-10AD-42D8-AF1C-3272628DE819}
{47C93CC1-2606-4130-922A-A1B2895E895E} = {38F4F699-609F-4894-8D3F-1BA1283DAE91}
{55BCF24D-7424-4C5E-AD72-BB34F217EBDF} = {8B24F47B-470E-4237-8E2B-0A4528598FEE}
{4F503379-98F6-4D3E-8751-EE23139BF354} = {72DE5BCD-BB42-41E2-916A-EEA0B7569529}
{C5B4A4A3-7346-4B77-AD03-839116FAFAC3} = {72DE5BCD-BB42-41E2-916A-EEA0B7569529}
{4E54641B-D109-4A35-AAE7-19DE65E07F7C} = {AD001C27-B88F-45AD-8297-DB5FE21C6DE7}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {BFB1E1C1-B3D4-4EA9-9AD0-AC8D61BF5735}
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
Policies = $0