Remove MonoTouch example and solution #50
|
@ -4,7 +4,10 @@ All notable changes to this project will be documented in this file.
|
|||
## [Unreleased]
|
||||
|
||||
### Changed
|
||||
- OxyPlot.Xamarin.Android targets latest platform
|
||||
- OxyPlot.Xamarin.Android targets latest Android platform
|
||||
|
||||
### Removed
|
||||
- OxyPlot.MonoTouch (#50)
|
||||
|
||||
## 1.0.0 - 2017-01-08
|
||||
### Added
|
||||
|
|
|
@ -1,95 +0,0 @@
|
|||
// --------------------------------------------------------------------------------------------------------------------
|
||||
// <copyright file="AppDelegate.cs" company="OxyPlot">
|
||||
// Copyright (c) 2014 OxyPlot contributors
|
||||
// </copyright>
|
||||
// --------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
namespace ExampleBrowser
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
|
||||
using MonoTouch.Foundation;
|
||||
using MonoTouch.UIKit;
|
||||
using MonoTouch.Dialog;
|
||||
|
||||
using ExampleLibrary;
|
||||
|
||||
// The UIApplicationDelegate for the application. This class is responsible for launching the
|
||||
// User Interface of the application, as well as listening (and optionally responding) to
|
||||
// application events from iOS.
|
||||
[Register ("AppDelegate")]
|
||||
public partial class AppDelegate : UIApplicationDelegate
|
||||
{
|
||||
// class-level declarations
|
||||
UIWindow window;
|
||||
|
||||
UINavigationController navigation;
|
||||
|
||||
List<ExampleInfo> exampleInfoList;
|
||||
|
||||
//
|
||||
// This method is invoked when the application has loaded and is ready to run. In this
|
||||
// method you should instantiate the window, load the UI into it and then make the window
|
||||
// visible.
|
||||
//
|
||||
// You have 17 seconds to return from this method, or iOS will terminate your application.
|
||||
//
|
||||
public override bool FinishedLaunching (UIApplication app, NSDictionary options)
|
||||
{
|
||||
exampleInfoList = ExampleLibrary.Examples.GetList();
|
||||
|
||||
// create a new window instance based on the screen size
|
||||
window = new UIWindow (UIScreen.MainScreen.Bounds);
|
||||
|
||||
navigation = new UINavigationController();
|
||||
|
||||
var root = new RootElement ("OxyPlot Example Browser");
|
||||
var section = new Section ();
|
||||
section.AddAll (exampleInfoList
|
||||
.GroupBy (e => e.Category)
|
||||
.OrderBy (g => g.Key)
|
||||
.Select (g =>
|
||||
(Element)new StyledStringElement (g.Key, delegate {
|
||||
DisplayCategory (g.Key);
|
||||
}) { Accessory = UITableViewCellAccessory.DisclosureIndicator }));
|
||||
root.Add (section);
|
||||
|
||||
var dvc = new DialogViewController (root, true);
|
||||
|
||||
navigation.PushViewController(dvc, true);
|
||||
|
||||
window.RootViewController = navigation;
|
||||
|
||||
// make the window visible
|
||||
window.MakeKeyAndVisible ();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
private void DisplayCategory(string category)
|
||||
{
|
||||
var root = new RootElement (category);
|
||||
var section = new Section ();
|
||||
section.AddAll (exampleInfoList
|
||||
.Where (e => e.Category == category)
|
||||
.OrderBy (e => e.Title)
|
||||
.Select (e => (Element)new StyledStringElement (e.Title, delegate {
|
||||
GraphView (e);
|
||||
}) { Accessory = UITableViewCellAccessory.DisclosureIndicator }
|
||||
));
|
||||
root.Add (section);
|
||||
|
||||
var dvc = new DialogViewController (root, true);
|
||||
|
||||
navigation.PushViewController (dvc, true);
|
||||
}
|
||||
|
||||
private void GraphView(ExampleInfo exampleInfo)
|
||||
{
|
||||
var dvc = new GraphViewController (exampleInfo);
|
||||
navigation.PushViewController (dvc, true);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,155 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">iPhoneSimulator</Platform>
|
||||
<ProductVersion>8.0.30703</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<ProjectGuid>{8A7939AC-BAC2-4CFB-B429-DB92F106700C}</ProjectGuid>
|
||||
<ProjectTypeGuids>{6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>ExampleBrowser</RootNamespace>
|
||||
<AssemblyName>ExampleBrowser</AssemblyName>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhoneSimulator' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\iPhoneSimulator\Debug</OutputPath>
|
||||
<DefineConstants>DEBUG;</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<ConsolePause>false</ConsolePause>
|
||||
<MtouchLink>None</MtouchLink>
|
||||
<MtouchDebug>true</MtouchDebug>
|
||||
<MtouchArch>ARMv7</MtouchArch>
|
||||
<MtouchI18n>
|
||||
</MtouchI18n>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhoneSimulator' ">
|
||||
<DebugType>none</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\iPhoneSimulator\Release</OutputPath>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<ConsolePause>false</ConsolePause>
|
||||
<MtouchLink>None</MtouchLink>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhone' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\iPhone\Debug</OutputPath>
|
||||
<DefineConstants>DEBUG;</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<ConsolePause>false</ConsolePause>
|
||||
<MtouchDebug>true</MtouchDebug>
|
||||
<CodesignKey>iPhone Developer</CodesignKey>
|
||||
<IpaPackageName>
|
||||
</IpaPackageName>
|
||||
<MtouchI18n>
|
||||
</MtouchI18n>
|
||||
<BuildIpa>true</BuildIpa>
|
||||
<MtouchArch>ARMv7</MtouchArch>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhone' ">
|
||||
<DebugType>none</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\iPhone\Release</OutputPath>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<ConsolePause>false</ConsolePause>
|
||||
<CodesignKey>iPhone Developer</CodesignKey>
|
||||
<BuildIpa>true</BuildIpa>
|
||||
<IpaPackageName>
|
||||
</IpaPackageName>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Xml" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="monotouch" />
|
||||
<Reference Include="MonoTouch.Dialog-1" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Info.plist" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Main.cs" />
|
||||
<Compile Include="AppDelegate.cs" />
|
||||
<Compile Include="GraphViewController.cs" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.MonoTouch.CSharp.targets" />
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\OxyPlot.MonoTouch\OxyPlot.MonoTouch.csproj">
|
||||
<Project>{7dcf07b1-b8bd-4ef0-b1fc-2aac4466b6c6}</Project>
|
||||
<Name>OxyPlot.MonoTouch</Name>
|
||||
<IsAppExtension>false</IsAppExtension>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\OxyPlot\OxyPlot.csproj">
|
||||
<Project>{7A0B35C0-DD17-4964-8E9A-44D6CECDC692}</Project>
|
||||
<Name>OxyPlot</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\ExampleLibrary\ExampleLibrary.csproj">
|
||||
<Project>{FACB89E5-53A5-4748-9F5B-E0714EBB37B2}</Project>
|
||||
<Name>ExampleLibrary</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup />
|
||||
<ItemGroup>
|
||||
<BundleResource Include="..\..\..\..\Icons\OxyPlot_57.png">
|
||||
<Link>Images\OxyPlot_57.png</Link>
|
||||
</BundleResource>
|
||||
<BundleResource Include="..\..\..\..\Icons\OxyPlot_114.png">
|
||||
<Link>Images\OxyPlot_114.png</Link>
|
||||
</BundleResource>
|
||||
<BundleResource Include="..\..\..\..\Icons\OxyPlot_72.png">
|
||||
<Link>Images\OxyPlot_72.png</Link>
|
||||
</BundleResource>
|
||||
<BundleResource Include="..\..\..\..\Icons\OxyPlot_76.png">
|
||||
<Link>Images\OxyPlot_76.png</Link>
|
||||
</BundleResource>
|
||||
<BundleResource Include="..\..\..\..\Icons\OxyPlot_120.png">
|
||||
<Link>Images\OxyPlot_120.png</Link>
|
||||
</BundleResource>
|
||||
<BundleResource Include="..\..\..\..\Icons\OxyPlot_144.png">
|
||||
<Link>Images\OxyPlot_144.png</Link>
|
||||
</BundleResource>
|
||||
<BundleResource Include="..\..\..\..\Icons\OxyPlot_152.png">
|
||||
<Link>Images\OxyPlot_152.png</Link>
|
||||
</BundleResource>
|
||||
<BundleResource Include="..\..\..\..\Icons\OxyPlot_29.png">
|
||||
<Link>Images\OxyPlot_29.png</Link>
|
||||
</BundleResource>
|
||||
<BundleResource Include="..\..\..\..\Icons\OxyPlot_40.png">
|
||||
<Link>Images\OxyPlot_40.png</Link>
|
||||
</BundleResource>
|
||||
<BundleResource Include="..\..\..\..\Icons\OxyPlot_50.png">
|
||||
<Link>Images\OxyPlot_50.png</Link>
|
||||
</BundleResource>
|
||||
<BundleResource Include="..\..\..\..\Icons\OxyPlot_58.png">
|
||||
<Link>Images\OxyPlot_58.png</Link>
|
||||
</BundleResource>
|
||||
<BundleResource Include="..\..\..\..\Icons\OxyPlot_80.png">
|
||||
<Link>Images\OxyPlot_80.png</Link>
|
||||
</BundleResource>
|
||||
<BundleResource Include="..\..\..\..\Icons\OxyPlot_100.png">
|
||||
<Link>Images\OxyPlot_100.png</Link>
|
||||
</BundleResource>
|
||||
<BundleResource Include="Images\ExampleBrowser_320x480.png" />
|
||||
<BundleResource Include="Images\ExampleBrowser_640x960.png" />
|
||||
<BundleResource Include="Images\ExampleBrowser_640x1136.png" />
|
||||
<BundleResource Include="Images\ExampleBrowser_768x1004.png" />
|
||||
<BundleResource Include="Images\ExampleBrowser_1024x748.png" />
|
||||
<BundleResource Include="Images\ExampleBrowser_1536x2008.png" />
|
||||
<BundleResource Include="Images\ExampleBrowser_2048x1496.png" />
|
||||
<BundleResource Include="Resources\Default-568h%402x.png" />
|
||||
<BundleResource Include="Resources\Default.png" />
|
||||
<BundleResource Include="Resources\Default%402x.png" />
|
||||
<BundleResource Include="Resources\Default-Portrait.png" />
|
||||
<BundleResource Include="Resources\Default-Landscape.png" />
|
||||
<BundleResource Include="Resources\Default-Portrait%402x.png" />
|
||||
<BundleResource Include="Resources\Default-Landscape%402x.png" />
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -1,119 +0,0 @@
|
|||
// --------------------------------------------------------------------------------------------------------------------
|
||||
// <copyright file="GraphViewController.cs" company="OxyPlot">
|
||||
// Copyright (c) 2014 OxyPlot contributors
|
||||
// </copyright>
|
||||
// <summary>
|
||||
// Handles device orientation changes.
|
||||
// </summary>
|
||||
// --------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
namespace ExampleBrowser
|
||||
{
|
||||
using System.Drawing;
|
||||
|
||||
using ExampleLibrary;
|
||||
|
||||
using MonoTouch.Foundation;
|
||||
using MonoTouch.MessageUI;
|
||||
using MonoTouch.UIKit;
|
||||
|
||||
using OxyPlot.MonoTouch;
|
||||
|
||||
public class GraphViewController : UIViewController
|
||||
{
|
||||
private readonly ExampleInfo exampleInfo;
|
||||
|
||||
private PlotView plotView;
|
||||
|
||||
public GraphViewController(ExampleInfo exampleInfo)
|
||||
{
|
||||
this.exampleInfo = exampleInfo;
|
||||
this.plotView = new PlotView();
|
||||
this.plotView.Model = exampleInfo.PlotModel;
|
||||
}
|
||||
|
||||
public override void LoadView()
|
||||
{
|
||||
NavigationItem.RightBarButtonItem = new UIBarButtonItem(UIBarButtonSystemItem.Compose,
|
||||
delegate
|
||||
{
|
||||
var actionSheet = new UIActionSheet("Email", null, "Cancel", "PNG", "PDF")
|
||||
{
|
||||
Style = UIActionSheetStyle.Default
|
||||
};
|
||||
|
||||
actionSheet.Clicked += delegate(object sender, UIButtonEventArgs args)
|
||||
{
|
||||
|
||||
if (args.ButtonIndex > 1)
|
||||
return;
|
||||
|
||||
Email(args.ButtonIndex == 0 ? "png" : "pdf");
|
||||
};
|
||||
|
||||
actionSheet.ShowInView(View);
|
||||
});
|
||||
|
||||
// Only for iOS 7 and later?
|
||||
this.EdgesForExtendedLayout = UIRectEdge.None;
|
||||
|
||||
this.View = this.plotView;
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Handles device orientation changes.
|
||||
/// </summary>
|
||||
/// <param name="fromInterfaceOrientation">The previous interface orientation.</param>
|
||||
public override void DidRotate(UIInterfaceOrientation fromInterfaceOrientation)
|
||||
{
|
||||
base.DidRotate(fromInterfaceOrientation);
|
||||
this.plotView.InvalidatePlot(false);
|
||||
}
|
||||
|
||||
private void Email(string exportType)
|
||||
{
|
||||
if (!MFMailComposeViewController.CanSendMail)
|
||||
return;
|
||||
|
||||
var title = exampleInfo.Title + "." + exportType;
|
||||
NSData nsData = null;
|
||||
string attachmentType = "text/plain";
|
||||
var rect = new RectangleF(0, 0, 800, 600);
|
||||
switch (exportType)
|
||||
{
|
||||
case "png":
|
||||
nsData = View.ToPng(rect);
|
||||
attachmentType = "image/png";
|
||||
break;
|
||||
case "pdf":
|
||||
nsData = View.ToPdf(rect);
|
||||
attachmentType = "text/x-pdf";
|
||||
break;
|
||||
}
|
||||
|
||||
var mail = new MFMailComposeViewController();
|
||||
mail.SetSubject("OxyPlot - " + title);
|
||||
mail.SetMessageBody("Please find attached " + title, false);
|
||||
mail.Finished += HandleMailFinished;
|
||||
mail.AddAttachmentData(nsData, attachmentType, title);
|
||||
|
||||
this.PresentViewController(mail, true, null);
|
||||
}
|
||||
|
||||
private void HandleMailFinished(object sender, MFComposeResultEventArgs e)
|
||||
{
|
||||
if (e.Result == MFMailComposeResult.Sent)
|
||||
{
|
||||
UIAlertView alert = new UIAlertView("Mail Alert", "Mail Sent",
|
||||
null, "Yippie", null);
|
||||
alert.Show();
|
||||
|
||||
// you should handle other values that could be returned
|
||||
// in e.Result and also in e.Error
|
||||
}
|
||||
|
||||
e.Controller.DismissViewController(true, null);
|
||||
}
|
||||
}
|
||||
}
|
До Ширина: | Высота: | Размер: 16 KiB |
До Ширина: | Высота: | Размер: 34 KiB |
До Ширина: | Высота: | Размер: 34 KiB |
До Ширина: | Высота: | Размер: 7.2 KiB |
До Ширина: | Высота: | Размер: 15 KiB |
До Ширина: | Высота: | Размер: 15 KiB |
До Ширина: | Высота: | Размер: 15 KiB |
|
@ -1,40 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDisplayName</key>
|
||||
<string>Example Browser</string>
|
||||
<key>CFBundleIconFiles</key>
|
||||
<array>
|
||||
<string>Images/OxyPlot_57</string>
|
||||
<string>Images/OxyPlot_114</string>
|
||||
<string>Images/OxyPlot_72</string>
|
||||
<string>Images/OxyPlot_29</string>
|
||||
<string>Images/OxyPlot_58</string>
|
||||
<string>Images/OxyPlot_50</string>
|
||||
<string>Images/OxyPlot_120</string>
|
||||
<string>Images/OxyPlot_144</string>
|
||||
<string>Images/OxyPlot_76</string>
|
||||
<string>Images/OxyPlot_152</string>
|
||||
<string>Images/OxyPlot_100</string>
|
||||
<string>Images/OxyPlot_40</string>
|
||||
<string>Images/OxyPlot_80</string>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.3.0</string>
|
||||
<key>MinimumOSVersion</key>
|
||||
<string>5.0</string>
|
||||
<key>UIDeviceFamily</key>
|
||||
<array>
|
||||
<integer>1</integer>
|
||||
<integer>2</integer>
|
||||
</array>
|
||||
<key>UISupportedInterfaceOrientations</key>
|
||||
<array>
|
||||
<string>UIInterfaceOrientationPortrait</string>
|
||||
<string>UIInterfaceOrientationPortraitUpsideDown</string>
|
||||
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||
</array>
|
||||
</dict>
|
||||
</plist>
|
|
@ -1,21 +0,0 @@
|
|||
// --------------------------------------------------------------------------------------------------------------------
|
||||
// <copyright file="Main.cs" company="OxyPlot">
|
||||
// Copyright (c) 2014 OxyPlot contributors
|
||||
// </copyright>
|
||||
// --------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
namespace ExampleBrowser
|
||||
{
|
||||
using MonoTouch.UIKit;
|
||||
|
||||
public class Application
|
||||
{
|
||||
// This is the main entry point of the application.
|
||||
static void Main(string[] args)
|
||||
{
|
||||
// if you want to use a different Application Delegate class from "AppDelegate"
|
||||
// you can specify it here.
|
||||
UIApplication.Main(args, null, "AppDelegate");
|
||||
}
|
||||
}
|
||||
}
|
До Ширина: | Высота: | Размер: 15 KiB |
До Ширина: | Высота: | Размер: 16 KiB |
До Ширина: | Высота: | Размер: 34 KiB |
До Ширина: | Высота: | Размер: 15 KiB |
До Ширина: | Высота: | Размер: 34 KiB |
Двоичные данные
Source/Examples/MonoTouch/ExampleBrowser/Resources/Default.png
До Ширина: | Высота: | Размер: 7.2 KiB |
До Ширина: | Высота: | Размер: 15 KiB |
|
@ -1,131 +0,0 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 2013
|
||||
VisualStudioVersion = 12.0.31101.0
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OxyPlot.MonoTouch", "OxyPlot.MonoTouch\OxyPlot.MonoTouch.csproj", "{7DCF07B1-B8BD-4EF0-B1FC-2AAC4466B6C6}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OxyPlot", "OxyPlot\OxyPlot.csproj", "{7A0B35C0-DD17-4964-8E9A-44D6CECDC692}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Examples", "Examples", "{0AB67A65-9645-4DF6-98A2-D5734D212E7C}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExampleBrowser", "Examples\MonoTouch\ExampleBrowser\ExampleBrowser.csproj", "{8A7939AC-BAC2-4CFB-B429-DB92F106700C}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExampleLibrary", "Examples\ExampleLibrary\ExampleLibrary.csproj", "{FACB89E5-53A5-4748-9F5B-E0714EBB37B2}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
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
|
||||
{7DCF07B1-B8BD-4EF0-B1FC-2AAC4466B6C6}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{7DCF07B1-B8BD-4EF0-B1FC-2AAC4466B6C6}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
|
||||
{7DCF07B1-B8BD-4EF0-B1FC-2AAC4466B6C6}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{7DCF07B1-B8BD-4EF0-B1FC-2AAC4466B6C6}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
|
||||
{7DCF07B1-B8BD-4EF0-B1FC-2AAC4466B6C6}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{7DCF07B1-B8BD-4EF0-B1FC-2AAC4466B6C6}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{7DCF07B1-B8BD-4EF0-B1FC-2AAC4466B6C6}.AppStore|Any CPU.Build.0 = Release|Any CPU
|
||||
{7DCF07B1-B8BD-4EF0-B1FC-2AAC4466B6C6}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{7DCF07B1-B8BD-4EF0-B1FC-2AAC4466B6C6}.AppStore|iPhone.Build.0 = Debug|Any CPU
|
||||
{7DCF07B1-B8BD-4EF0-B1FC-2AAC4466B6C6}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{7DCF07B1-B8BD-4EF0-B1FC-2AAC4466B6C6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{7DCF07B1-B8BD-4EF0-B1FC-2AAC4466B6C6}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{7DCF07B1-B8BD-4EF0-B1FC-2AAC4466B6C6}.Debug|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{7DCF07B1-B8BD-4EF0-B1FC-2AAC4466B6C6}.Debug|iPhone.Build.0 = Debug|Any CPU
|
||||
{7DCF07B1-B8BD-4EF0-B1FC-2AAC4466B6C6}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
|
||||
{7DCF07B1-B8BD-4EF0-B1FC-2AAC4466B6C6}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
|
||||
{7DCF07B1-B8BD-4EF0-B1FC-2AAC4466B6C6}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{7DCF07B1-B8BD-4EF0-B1FC-2AAC4466B6C6}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{7DCF07B1-B8BD-4EF0-B1FC-2AAC4466B6C6}.Release|iPhone.ActiveCfg = Release|Any CPU
|
||||
{7DCF07B1-B8BD-4EF0-B1FC-2AAC4466B6C6}.Release|iPhone.Build.0 = Release|Any CPU
|
||||
{7DCF07B1-B8BD-4EF0-B1FC-2AAC4466B6C6}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{7DCF07B1-B8BD-4EF0-B1FC-2AAC4466B6C6}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{7A0B35C0-DD17-4964-8E9A-44D6CECDC692}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{7A0B35C0-DD17-4964-8E9A-44D6CECDC692}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
|
||||
{7A0B35C0-DD17-4964-8E9A-44D6CECDC692}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{7A0B35C0-DD17-4964-8E9A-44D6CECDC692}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
|
||||
{7A0B35C0-DD17-4964-8E9A-44D6CECDC692}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{7A0B35C0-DD17-4964-8E9A-44D6CECDC692}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{7A0B35C0-DD17-4964-8E9A-44D6CECDC692}.AppStore|Any CPU.Build.0 = Release|Any CPU
|
||||
{7A0B35C0-DD17-4964-8E9A-44D6CECDC692}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{7A0B35C0-DD17-4964-8E9A-44D6CECDC692}.AppStore|iPhone.Build.0 = Debug|Any CPU
|
||||
{7A0B35C0-DD17-4964-8E9A-44D6CECDC692}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{7A0B35C0-DD17-4964-8E9A-44D6CECDC692}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{7A0B35C0-DD17-4964-8E9A-44D6CECDC692}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{7A0B35C0-DD17-4964-8E9A-44D6CECDC692}.Debug|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{7A0B35C0-DD17-4964-8E9A-44D6CECDC692}.Debug|iPhone.Build.0 = Debug|Any CPU
|
||||
{7A0B35C0-DD17-4964-8E9A-44D6CECDC692}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
|
||||
{7A0B35C0-DD17-4964-8E9A-44D6CECDC692}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
|
||||
{7A0B35C0-DD17-4964-8E9A-44D6CECDC692}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{7A0B35C0-DD17-4964-8E9A-44D6CECDC692}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{7A0B35C0-DD17-4964-8E9A-44D6CECDC692}.Release|iPhone.ActiveCfg = Release|Any CPU
|
||||
{7A0B35C0-DD17-4964-8E9A-44D6CECDC692}.Release|iPhone.Build.0 = Release|Any CPU
|
||||
{7A0B35C0-DD17-4964-8E9A-44D6CECDC692}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{7A0B35C0-DD17-4964-8E9A-44D6CECDC692}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{8A7939AC-BAC2-4CFB-B429-DB92F106700C}.Ad-Hoc|Any CPU.ActiveCfg = Release|iPhone
|
||||
{8A7939AC-BAC2-4CFB-B429-DB92F106700C}.Ad-Hoc|iPhone.ActiveCfg = Debug|iPhone
|
||||
{8A7939AC-BAC2-4CFB-B429-DB92F106700C}.Ad-Hoc|iPhone.Build.0 = Debug|iPhone
|
||||
{8A7939AC-BAC2-4CFB-B429-DB92F106700C}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
|
||||
{8A7939AC-BAC2-4CFB-B429-DB92F106700C}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
|
||||
{8A7939AC-BAC2-4CFB-B429-DB92F106700C}.AppStore|Any CPU.ActiveCfg = Release|iPhone
|
||||
{8A7939AC-BAC2-4CFB-B429-DB92F106700C}.AppStore|iPhone.ActiveCfg = Debug|iPhone
|
||||
{8A7939AC-BAC2-4CFB-B429-DB92F106700C}.AppStore|iPhone.Build.0 = Debug|iPhone
|
||||
{8A7939AC-BAC2-4CFB-B429-DB92F106700C}.AppStore|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
|
||||
{8A7939AC-BAC2-4CFB-B429-DB92F106700C}.AppStore|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
|
||||
{8A7939AC-BAC2-4CFB-B429-DB92F106700C}.Debug|Any CPU.ActiveCfg = Debug|iPhoneSimulator
|
||||
{8A7939AC-BAC2-4CFB-B429-DB92F106700C}.Debug|Any CPU.Build.0 = Debug|iPhoneSimulator
|
||||
{8A7939AC-BAC2-4CFB-B429-DB92F106700C}.Debug|iPhone.ActiveCfg = Debug|iPhone
|
||||
{8A7939AC-BAC2-4CFB-B429-DB92F106700C}.Debug|iPhone.Build.0 = Debug|iPhone
|
||||
{8A7939AC-BAC2-4CFB-B429-DB92F106700C}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
|
||||
{8A7939AC-BAC2-4CFB-B429-DB92F106700C}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
|
||||
{8A7939AC-BAC2-4CFB-B429-DB92F106700C}.Release|Any CPU.ActiveCfg = Release|iPhoneSimulator
|
||||
{8A7939AC-BAC2-4CFB-B429-DB92F106700C}.Release|Any CPU.Build.0 = Release|iPhoneSimulator
|
||||
{8A7939AC-BAC2-4CFB-B429-DB92F106700C}.Release|iPhone.ActiveCfg = Release|iPhone
|
||||
{8A7939AC-BAC2-4CFB-B429-DB92F106700C}.Release|iPhone.Build.0 = Release|iPhone
|
||||
{8A7939AC-BAC2-4CFB-B429-DB92F106700C}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
|
||||
{8A7939AC-BAC2-4CFB-B429-DB92F106700C}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
|
||||
{FACB89E5-53A5-4748-9F5B-E0714EBB37B2}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{FACB89E5-53A5-4748-9F5B-E0714EBB37B2}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
|
||||
{FACB89E5-53A5-4748-9F5B-E0714EBB37B2}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{FACB89E5-53A5-4748-9F5B-E0714EBB37B2}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
|
||||
{FACB89E5-53A5-4748-9F5B-E0714EBB37B2}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{FACB89E5-53A5-4748-9F5B-E0714EBB37B2}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{FACB89E5-53A5-4748-9F5B-E0714EBB37B2}.AppStore|Any CPU.Build.0 = Release|Any CPU
|
||||
{FACB89E5-53A5-4748-9F5B-E0714EBB37B2}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{FACB89E5-53A5-4748-9F5B-E0714EBB37B2}.AppStore|iPhone.Build.0 = Debug|Any CPU
|
||||
{FACB89E5-53A5-4748-9F5B-E0714EBB37B2}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{FACB89E5-53A5-4748-9F5B-E0714EBB37B2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{FACB89E5-53A5-4748-9F5B-E0714EBB37B2}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{FACB89E5-53A5-4748-9F5B-E0714EBB37B2}.Debug|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{FACB89E5-53A5-4748-9F5B-E0714EBB37B2}.Debug|iPhone.Build.0 = Debug|Any CPU
|
||||
{FACB89E5-53A5-4748-9F5B-E0714EBB37B2}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
|
||||
{FACB89E5-53A5-4748-9F5B-E0714EBB37B2}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
|
||||
{FACB89E5-53A5-4748-9F5B-E0714EBB37B2}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{FACB89E5-53A5-4748-9F5B-E0714EBB37B2}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{FACB89E5-53A5-4748-9F5B-E0714EBB37B2}.Release|iPhone.ActiveCfg = Release|Any CPU
|
||||
{FACB89E5-53A5-4748-9F5B-E0714EBB37B2}.Release|iPhone.Build.0 = Release|Any CPU
|
||||
{FACB89E5-53A5-4748-9F5B-E0714EBB37B2}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{FACB89E5-53A5-4748-9F5B-E0714EBB37B2}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(NestedProjects) = preSolution
|
||||
{8A7939AC-BAC2-4CFB-B429-DB92F106700C} = {0AB67A65-9645-4DF6-98A2-D5734D212E7C}
|
||||
{FACB89E5-53A5-4748-9F5B-E0714EBB37B2} = {0AB67A65-9645-4DF6-98A2-D5734D212E7C}
|
||||
EndGlobalSection
|
||||
GlobalSection(MonoDevelopProperties) = preSolution
|
||||
StartupItem = Examples\XamarinIOS\ExampleBrowser\ExampleBrowser.csproj
|
||||
EndGlobalSection
|
||||
EndGlobal
|