Add implementation for EventHooks in iOS

This commit is contained in:
Maurits van Beusekom 2017-02-09 20:46:10 +01:00
Родитель b924c4c124
Коммит ceac5dcb9d
40 изменённых файлов: 1522 добавлений и 233 удалений

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

@ -53,6 +53,30 @@ namespace MvvmCross.iOS.Views
public IMvxBindingContext BindingContext { get; set; }
public override void ViewWillAppear(bool animated)
{
base.ViewWillAppear(animated);
ViewModel?.Appearing();
}
public override void ViewDidAppear(bool animated)
{
base.ViewDidAppear(animated);
ViewModel?.Appeared();
}
public override void ViewWillDisappear(bool animated)
{
base.ViewWillDisappear(animated);
ViewModel?.Disappearing();
}
public override void ViewDidDisappear(bool animated)
{
base.ViewDidDisappear(animated);
ViewModel?.Disappeared();
}
public override void PrepareForSegue(UIStoryboardSegue segue, NSObject sender) {
base.PrepareForSegue(segue, sender);
this.ViewModelRequestForSegue(segue, sender);

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

@ -407,13 +407,21 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MvvmCross.Plugins.Visibilit
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MvvmCross.Plugins.WebBrowser.Uwp", "MvvmCross-Plugins\WebBrowser\MvvmCross.Plugins.WebBrowser.Uwp\MvvmCross.Plugins.WebBrowser.Uwp.csproj", "{08E19EF4-8C86-4F6E-B78A-063983884434}"
EndProject
Project("{9344BDBB-3E7F-41FC-A0DD-8665D75EE146}") = "MvvmCross.Platform.Wpf", "MvvmCross\Platform\Wpf\MvvmCross.Platform.Wpf.csproj", "{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MvvmCross.Platform.Wpf", "MvvmCross\Platform\Wpf\MvvmCross.Platform.Wpf.csproj", "{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}"
EndProject
Project("{9344BDBB-3E7F-41FC-A0DD-8665D75EE146}") = "MvvmCrossCodeAnalysis", "CodeAnalysis\MvvmCross.CodeAnalysis\MvvmCrossCodeAnalysis.csproj", "{46D38E32-6473-4730-988C-E8755306F265}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MvvmCrossCodeAnalysis", "CodeAnalysis\MvvmCross.CodeAnalysis\MvvmCrossCodeAnalysis.csproj", "{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}"
EndProject
Project("{9344BDBB-3E7F-41FC-A0DD-8665D75EE146}") = "MvvmCross.CodeAnalysis.Test", "CodeAnalysis\MvvmCross.CodeAnalysis.Test\MvvmCross.CodeAnalysis.Test.csproj", "{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MvvmCross.CodeAnalysis.Test", "CodeAnalysis\MvvmCross.CodeAnalysis.Test\MvvmCross.CodeAnalysis.Test.csproj", "{067456C0-086C-46A8-B37F-1405717B7BFC}"
EndProject
Project("{9344BDBB-3E7F-41FC-A0DD-8665D75EE146}") = "MvvmCross.Wpf", "MvvmCross\Windows\Wpf\MvvmCross.Wpf.csproj", "{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MvvmCross.Wpf", "MvvmCross\Windows\Wpf\MvvmCross.Wpf.csproj", "{3786EA13-A491-4917-9B49-FBE76BA87FAB}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Eventhooks", "Eventhooks", "{56A13C46-82EC-4508-9857-A279F9B51797}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Eventhooks.Core", "TestProjects\Eventhooks\Eventhooks.Core\Eventhooks.Core.csproj", "{4720E13F-DAA5-4FB8-86B5-1C12117F0553}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Eventhooks.iOS", "TestProjects\Eventhooks\Eventhooks.iOS\Eventhooks.iOS.csproj", "{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Eventhooks.Droid", "TestProjects\Eventhooks\Eventhooks.Droid\Eventhooks.Droid.csproj", "{795D9BF2-DE27-4B94-9128-FB405F996D37}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@ -7234,230 +7242,389 @@ Global
{08E19EF4-8C86-4F6E-B78A-063983884434}.Release|x64.Build.0 = Release|Any CPU
{08E19EF4-8C86-4F6E-B78A-063983884434}.Release|x86.ActiveCfg = Release|Any CPU
{08E19EF4-8C86-4F6E-B78A-063983884434}.Release|x86.Build.0 = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Ad-Hoc|ARM.Build.0 = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Ad-Hoc|Mixed Platforms.Build.0 = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Ad-Hoc|x64.Build.0 = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Ad-Hoc|x86.Build.0 = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.AppStore|Any CPU.Build.0 = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.AppStore|ARM.ActiveCfg = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.AppStore|ARM.Build.0 = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.AppStore|iPhone.Build.0 = Debug|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.AppStore|Mixed Platforms.ActiveCfg = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.AppStore|Mixed Platforms.Build.0 = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.AppStore|x64.ActiveCfg = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.AppStore|x64.Build.0 = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.AppStore|x86.ActiveCfg = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.AppStore|x86.Build.0 = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Debug|ARM.ActiveCfg = Debug|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Debug|ARM.Build.0 = Debug|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Debug|iPhone.Build.0 = Debug|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Debug|x64.ActiveCfg = Debug|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Debug|x64.Build.0 = Debug|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Debug|x86.ActiveCfg = Debug|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Debug|x86.Build.0 = Debug|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Release|Any CPU.Build.0 = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Release|ARM.ActiveCfg = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Release|ARM.Build.0 = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Release|iPhone.ActiveCfg = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Release|iPhone.Build.0 = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Release|x64.ActiveCfg = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Release|x64.Build.0 = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Release|x86.ActiveCfg = Release|Any CPU
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72}.Release|x86.Build.0 = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Ad-Hoc|ARM.Build.0 = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Ad-Hoc|Mixed Platforms.Build.0 = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Ad-Hoc|x64.Build.0 = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Ad-Hoc|x86.Build.0 = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.AppStore|Any CPU.Build.0 = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.AppStore|ARM.ActiveCfg = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.AppStore|ARM.Build.0 = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.AppStore|iPhone.Build.0 = Debug|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.AppStore|Mixed Platforms.ActiveCfg = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.AppStore|Mixed Platforms.Build.0 = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.AppStore|x64.ActiveCfg = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.AppStore|x64.Build.0 = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.AppStore|x86.ActiveCfg = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.AppStore|x86.Build.0 = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Debug|Any CPU.Build.0 = Debug|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Debug|ARM.ActiveCfg = Debug|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Debug|ARM.Build.0 = Debug|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Debug|iPhone.Build.0 = Debug|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Debug|x64.ActiveCfg = Debug|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Debug|x64.Build.0 = Debug|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Debug|x86.ActiveCfg = Debug|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Debug|x86.Build.0 = Debug|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Release|Any CPU.ActiveCfg = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Release|Any CPU.Build.0 = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Release|ARM.ActiveCfg = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Release|ARM.Build.0 = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Release|iPhone.ActiveCfg = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Release|iPhone.Build.0 = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Release|x64.ActiveCfg = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Release|x64.Build.0 = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Release|x86.ActiveCfg = Release|Any CPU
{46D38E32-6473-4730-988C-E8755306F265}.Release|x86.Build.0 = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Ad-Hoc|ARM.Build.0 = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Ad-Hoc|Mixed Platforms.Build.0 = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Ad-Hoc|x64.Build.0 = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Ad-Hoc|x86.Build.0 = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.AppStore|Any CPU.Build.0 = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.AppStore|ARM.ActiveCfg = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.AppStore|ARM.Build.0 = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.AppStore|iPhone.Build.0 = Debug|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.AppStore|Mixed Platforms.ActiveCfg = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.AppStore|Mixed Platforms.Build.0 = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.AppStore|x64.ActiveCfg = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.AppStore|x64.Build.0 = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.AppStore|x86.ActiveCfg = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.AppStore|x86.Build.0 = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Debug|ARM.ActiveCfg = Debug|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Debug|ARM.Build.0 = Debug|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Debug|iPhone.Build.0 = Debug|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Debug|x64.ActiveCfg = Debug|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Debug|x64.Build.0 = Debug|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Debug|x86.ActiveCfg = Debug|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Debug|x86.Build.0 = Debug|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Release|Any CPU.Build.0 = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Release|ARM.ActiveCfg = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Release|ARM.Build.0 = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Release|iPhone.ActiveCfg = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Release|iPhone.Build.0 = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Release|x64.ActiveCfg = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Release|x64.Build.0 = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Release|x86.ActiveCfg = Release|Any CPU
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF}.Release|x86.Build.0 = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Ad-Hoc|ARM.Build.0 = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Ad-Hoc|Mixed Platforms.Build.0 = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Ad-Hoc|x64.Build.0 = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Ad-Hoc|x86.Build.0 = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.AppStore|Any CPU.Build.0 = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.AppStore|ARM.ActiveCfg = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.AppStore|ARM.Build.0 = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.AppStore|iPhone.Build.0 = Debug|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.AppStore|Mixed Platforms.ActiveCfg = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.AppStore|Mixed Platforms.Build.0 = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.AppStore|x64.ActiveCfg = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.AppStore|x64.Build.0 = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.AppStore|x86.ActiveCfg = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.AppStore|x86.Build.0 = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Debug|ARM.ActiveCfg = Debug|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Debug|ARM.Build.0 = Debug|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Debug|iPhone.Build.0 = Debug|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Debug|x64.ActiveCfg = Debug|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Debug|x64.Build.0 = Debug|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Debug|x86.ActiveCfg = Debug|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Debug|x86.Build.0 = Debug|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Release|Any CPU.Build.0 = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Release|ARM.ActiveCfg = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Release|ARM.Build.0 = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Release|iPhone.ActiveCfg = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Release|iPhone.Build.0 = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Release|x64.ActiveCfg = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Release|x64.Build.0 = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Release|x86.ActiveCfg = Release|Any CPU
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236}.Release|x86.Build.0 = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Ad-Hoc|ARM.Build.0 = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Ad-Hoc|Mixed Platforms.Build.0 = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Ad-Hoc|x64.Build.0 = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Ad-Hoc|x86.Build.0 = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.AppStore|Any CPU.Build.0 = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.AppStore|ARM.ActiveCfg = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.AppStore|ARM.Build.0 = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.AppStore|iPhone.Build.0 = Debug|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.AppStore|Mixed Platforms.ActiveCfg = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.AppStore|Mixed Platforms.Build.0 = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.AppStore|x64.ActiveCfg = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.AppStore|x64.Build.0 = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.AppStore|x86.ActiveCfg = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.AppStore|x86.Build.0 = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Debug|ARM.ActiveCfg = Debug|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Debug|ARM.Build.0 = Debug|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Debug|iPhone.Build.0 = Debug|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Debug|x64.ActiveCfg = Debug|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Debug|x64.Build.0 = Debug|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Debug|x86.ActiveCfg = Debug|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Debug|x86.Build.0 = Debug|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Release|Any CPU.Build.0 = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Release|ARM.ActiveCfg = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Release|ARM.Build.0 = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Release|iPhone.ActiveCfg = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Release|iPhone.Build.0 = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Release|x64.ActiveCfg = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Release|x64.Build.0 = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Release|x86.ActiveCfg = Release|Any CPU
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED}.Release|x86.Build.0 = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Ad-Hoc|ARM.Build.0 = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Ad-Hoc|Mixed Platforms.Build.0 = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Ad-Hoc|x64.Build.0 = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Ad-Hoc|x86.Build.0 = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.AppStore|Any CPU.Build.0 = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.AppStore|ARM.ActiveCfg = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.AppStore|ARM.Build.0 = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.AppStore|iPhone.Build.0 = Debug|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.AppStore|Mixed Platforms.ActiveCfg = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.AppStore|Mixed Platforms.Build.0 = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.AppStore|x64.ActiveCfg = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.AppStore|x64.Build.0 = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.AppStore|x86.ActiveCfg = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.AppStore|x86.Build.0 = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Debug|ARM.ActiveCfg = Debug|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Debug|ARM.Build.0 = Debug|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Debug|iPhone.Build.0 = Debug|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Debug|x64.ActiveCfg = Debug|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Debug|x64.Build.0 = Debug|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Debug|x86.ActiveCfg = Debug|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Debug|x86.Build.0 = Debug|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Release|Any CPU.Build.0 = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Release|ARM.ActiveCfg = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Release|ARM.Build.0 = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Release|iPhone.ActiveCfg = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Release|iPhone.Build.0 = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Release|x64.ActiveCfg = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Release|x64.Build.0 = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Release|x86.ActiveCfg = Release|Any CPU
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6}.Release|x86.Build.0 = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Ad-Hoc|ARM.Build.0 = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Ad-Hoc|Mixed Platforms.Build.0 = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Ad-Hoc|x64.Build.0 = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Ad-Hoc|x86.Build.0 = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.AppStore|Any CPU.Build.0 = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.AppStore|ARM.ActiveCfg = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.AppStore|ARM.Build.0 = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.AppStore|iPhone.Build.0 = Debug|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.AppStore|Mixed Platforms.ActiveCfg = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.AppStore|Mixed Platforms.Build.0 = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.AppStore|x64.ActiveCfg = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.AppStore|x64.Build.0 = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.AppStore|x86.ActiveCfg = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.AppStore|x86.Build.0 = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Debug|ARM.ActiveCfg = Debug|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Debug|ARM.Build.0 = Debug|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Debug|iPhone.Build.0 = Debug|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Debug|x64.ActiveCfg = Debug|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Debug|x64.Build.0 = Debug|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Debug|x86.ActiveCfg = Debug|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Debug|x86.Build.0 = Debug|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Release|Any CPU.Build.0 = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Release|ARM.ActiveCfg = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Release|ARM.Build.0 = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Release|iPhone.ActiveCfg = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Release|iPhone.Build.0 = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Release|x64.ActiveCfg = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Release|x64.Build.0 = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Release|x86.ActiveCfg = Release|Any CPU
{067456C0-086C-46A8-B37F-1405717B7BFC}.Release|x86.Build.0 = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Ad-Hoc|ARM.Build.0 = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Ad-Hoc|Mixed Platforms.Build.0 = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Ad-Hoc|x64.Build.0 = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Ad-Hoc|x86.Build.0 = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.AppStore|Any CPU.Build.0 = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.AppStore|ARM.ActiveCfg = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.AppStore|ARM.Build.0 = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.AppStore|iPhone.Build.0 = Debug|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.AppStore|Mixed Platforms.ActiveCfg = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.AppStore|Mixed Platforms.Build.0 = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.AppStore|x64.ActiveCfg = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.AppStore|x64.Build.0 = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.AppStore|x86.ActiveCfg = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.AppStore|x86.Build.0 = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Debug|ARM.ActiveCfg = Debug|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Debug|ARM.Build.0 = Debug|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Debug|iPhone.Build.0 = Debug|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Debug|x64.ActiveCfg = Debug|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Debug|x64.Build.0 = Debug|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Debug|x86.ActiveCfg = Debug|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Debug|x86.Build.0 = Debug|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Release|Any CPU.Build.0 = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Release|ARM.ActiveCfg = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Release|ARM.Build.0 = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Release|iPhone.ActiveCfg = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Release|iPhone.Build.0 = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Release|x64.ActiveCfg = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Release|x64.Build.0 = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Release|x86.ActiveCfg = Release|Any CPU
{3786EA13-A491-4917-9B49-FBE76BA87FAB}.Release|x86.Build.0 = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Ad-Hoc|ARM.Build.0 = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Ad-Hoc|Mixed Platforms.Build.0 = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Ad-Hoc|x64.Build.0 = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Ad-Hoc|x86.Build.0 = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.AppStore|ARM.ActiveCfg = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.AppStore|ARM.Build.0 = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.AppStore|iPhone.ActiveCfg = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.AppStore|iPhone.Build.0 = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.AppStore|Mixed Platforms.ActiveCfg = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.AppStore|Mixed Platforms.Build.0 = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.AppStore|x64.ActiveCfg = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.AppStore|x64.Build.0 = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.AppStore|x86.ActiveCfg = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.AppStore|x86.Build.0 = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Debug|ARM.ActiveCfg = Debug|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Debug|ARM.Build.0 = Debug|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Debug|iPhone.Build.0 = Debug|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Debug|x64.ActiveCfg = Debug|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Debug|x64.Build.0 = Debug|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Debug|x86.ActiveCfg = Debug|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Debug|x86.Build.0 = Debug|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Release|ARM.ActiveCfg = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Release|ARM.Build.0 = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Release|iPhone.ActiveCfg = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Release|iPhone.Build.0 = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Release|x64.ActiveCfg = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Release|x64.Build.0 = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Release|x86.ActiveCfg = Release|Any CPU
{4720E13F-DAA5-4FB8-86B5-1C12117F0553}.Release|x86.Build.0 = Release|Any CPU
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Ad-Hoc|Any CPU.ActiveCfg = Release|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Ad-Hoc|ARM.ActiveCfg = Release|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Ad-Hoc|ARM.Build.0 = Release|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Ad-Hoc|iPhone.ActiveCfg = Release|iPhone
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Ad-Hoc|iPhone.Build.0 = Release|iPhone
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Ad-Hoc|Mixed Platforms.Build.0 = Release|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Ad-Hoc|x64.ActiveCfg = Release|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Ad-Hoc|x64.Build.0 = Release|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Ad-Hoc|x86.ActiveCfg = Release|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Ad-Hoc|x86.Build.0 = Release|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.AppStore|Any CPU.ActiveCfg = Release|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.AppStore|ARM.ActiveCfg = Release|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.AppStore|ARM.Build.0 = Release|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.AppStore|iPhone.ActiveCfg = Release|iPhone
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.AppStore|iPhone.Build.0 = Release|iPhone
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.AppStore|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.AppStore|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.AppStore|Mixed Platforms.ActiveCfg = Release|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.AppStore|Mixed Platforms.Build.0 = Release|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.AppStore|x64.ActiveCfg = Release|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.AppStore|x64.Build.0 = Release|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.AppStore|x86.ActiveCfg = Release|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.AppStore|x86.Build.0 = Release|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Debug|Any CPU.ActiveCfg = Debug|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Debug|Any CPU.Build.0 = Debug|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Debug|ARM.ActiveCfg = Debug|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Debug|ARM.Build.0 = Debug|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Debug|iPhone.ActiveCfg = Debug|iPhone
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Debug|iPhone.Build.0 = Debug|iPhone
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Debug|Mixed Platforms.ActiveCfg = Debug|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Debug|Mixed Platforms.Build.0 = Debug|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Debug|x64.ActiveCfg = Debug|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Debug|x64.Build.0 = Debug|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Debug|x86.ActiveCfg = Debug|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Debug|x86.Build.0 = Debug|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Release|Any CPU.ActiveCfg = Release|iPhone
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Release|ARM.ActiveCfg = Release|iPhone
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Release|ARM.Build.0 = Release|iPhone
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Release|iPhone.ActiveCfg = Release|iPhone
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Release|iPhone.Build.0 = Release|iPhone
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Release|Mixed Platforms.ActiveCfg = Release|iPhone
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Release|Mixed Platforms.Build.0 = Release|iPhone
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Release|x64.ActiveCfg = Release|iPhone
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Release|x64.Build.0 = Release|iPhone
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Release|x86.ActiveCfg = Release|iPhone
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}.Release|x86.Build.0 = Release|iPhone
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Ad-Hoc|ARM.Build.0 = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Ad-Hoc|Mixed Platforms.Build.0 = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Ad-Hoc|x64.Build.0 = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Ad-Hoc|x86.Build.0 = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.AppStore|ARM.ActiveCfg = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.AppStore|ARM.Build.0 = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.AppStore|iPhone.ActiveCfg = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.AppStore|iPhone.Build.0 = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.AppStore|Mixed Platforms.ActiveCfg = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.AppStore|Mixed Platforms.Build.0 = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.AppStore|x64.ActiveCfg = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.AppStore|x64.Build.0 = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.AppStore|x86.ActiveCfg = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.AppStore|x86.Build.0 = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Debug|Any CPU.Build.0 = Debug|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Debug|ARM.ActiveCfg = Debug|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Debug|ARM.Build.0 = Debug|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Debug|iPhone.Build.0 = Debug|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Debug|x64.ActiveCfg = Debug|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Debug|x64.Build.0 = Debug|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Debug|x86.ActiveCfg = Debug|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Debug|x86.Build.0 = Debug|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Release|Any CPU.ActiveCfg = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Release|ARM.ActiveCfg = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Release|ARM.Build.0 = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Release|iPhone.ActiveCfg = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Release|iPhone.Build.0 = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Release|x64.ActiveCfg = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Release|x64.Build.0 = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Release|x86.ActiveCfg = Release|Any CPU
{795D9BF2-DE27-4B94-9128-FB405F996D37}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
@ -7649,9 +7816,13 @@ Global
{E5DAA4CD-6225-4C33-9B1A-DD45E4AD4E41} = {9D0DD00E-1328-4C1B-8F26-C8A65903C3B1}
{CA19B8B7-4790-48C5-AC71-D1E6BCE141E7} = {1A5811B5-DE52-4608-BE67-588A982574A6}
{08E19EF4-8C86-4F6E-B78A-063983884434} = {C5DF51EF-15E4-4C74-B8CB-A48C45F0ADD6}
{BDD29D7B-293A-4A4A-8DC8-F18285CBFD72} = {CFC09D0C-4B82-4F63-8445-F58C3562EFE7}
{46D38E32-6473-4730-988C-E8755306F265} = {ADECD310-4AD0-4EAF-9C97-23A7095229E6}
{54273B3A-3C79-40EF-8974-98C2CFE5A3DF} = {ADECD310-4AD0-4EAF-9C97-23A7095229E6}
{7FC60CFB-068A-41B4-8C9A-055DBD2EC236} = {80E14EC8-6E98-4AE9-B4F4-8DBE6642A0D0}
{3688D6FC-E7F4-485F-8B27-96C0A8C7EAED} = {CFC09D0C-4B82-4F63-8445-F58C3562EFE7}
{C8F9F6A5-4083-4C51-B84C-8AC1F27A8AA6} = {ADECD310-4AD0-4EAF-9C97-23A7095229E6}
{067456C0-086C-46A8-B37F-1405717B7BFC} = {ADECD310-4AD0-4EAF-9C97-23A7095229E6}
{3786EA13-A491-4917-9B49-FBE76BA87FAB} = {80E14EC8-6E98-4AE9-B4F4-8DBE6642A0D0}
{56A13C46-82EC-4508-9857-A279F9B51797} = {E05687BD-69EB-4228-BD46-5D216CD68F01}
{4720E13F-DAA5-4FB8-86B5-1C12117F0553} = {56A13C46-82EC-4508-9857-A279F9B51797}
{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A} = {56A13C46-82EC-4508-9857-A279F9B51797}
{795D9BF2-DE27-4B94-9128-FB405F996D37} = {56A13C46-82EC-4508-9857-A279F9B51797}
EndGlobalSection
EndGlobal

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

@ -0,0 +1,18 @@
using MvvmCross.Core.ViewModels;
using MvvmCross.Platform.IoC;
namespace Eventhooks.Core
{
public class App : MvxApplication
{
public override void Initialize()
{
CreatableTypes()
.EndingWith("Service")
.AsInterfaces()
.RegisterAsLazySingleton();
RegisterAppStart<ViewModels.FirstViewModel>();
}
}
}

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

@ -0,0 +1,50 @@
<?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)' == '' ">AnyCPU</Platform>
<ProjectGuid>{4720E13F-DAA5-4FB8-86B5-1C12117F0553}</ProjectGuid>
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<UseMSBuildEngine>true</UseMSBuildEngine>
<OutputType>Library</OutputType>
<RootNamespace>Eventhooks.Core</RootNamespace>
<AssemblyName>Eventhooks.Core</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkProfile>Profile259</TargetFrameworkProfile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="App.cs" />
<Compile Include="ViewModels\FirstViewModel.cs" />
<Compile Include="ViewModels\SecondViewModel.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="ViewModels\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\MvvmCross\Core\Core\MvvmCross.Core.csproj">
<Project>{B6E27475-E7D0-448C-A5CC-5097DCA1E2DD}</Project>
<Name>MvvmCross.Core</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\MvvmCross\Platform\Platform\MvvmCross.Platform.csproj">
<Project>{CFF6F25A-3C3B-44EE-A54C-2ED4AAFF3ADB}</Project>
<Name>MvvmCross.Platform</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
</Project>

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

@ -0,0 +1,10 @@
using System;
namespace Eventhooks.Core
{
public class MyClass
{
public MyClass()
{
}
}
}

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

@ -0,0 +1,26 @@
using System.Reflection;
using System.Runtime.CompilerServices;
// Information about this assembly is defined by the following attributes.
// Change them to the values specific to your project.
[assembly: AssemblyTitle("Eventhooks.Core")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("")]
[assembly: AssemblyCopyright("(c) Maurits van Beusekom")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
[assembly: AssemblyVersion("1.0.*")]
// The following attributes are used to specify the signing key for the assembly,
// if desired. See the Mono documentation for more information about signing.
//[assembly: AssemblyDelaySign(false)]
//[assembly: AssemblyKeyFile("")]

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

@ -0,0 +1,40 @@
using System;
using MvvmCross.Core.ViewModels;
using MvvmCross.Platform.Platform;
namespace Eventhooks.Core.ViewModels
{
public class FirstViewModel
: MvxViewModel
{
public override void Appearing()
{
MvxTrace.Trace(MvxTraceLevel.Diagnostic, "View is appearing");
}
public override void Appeared()
{
MvxTrace.Trace(MvxTraceLevel.Diagnostic, "View appeared");
}
public override void Disappearing()
{
MvxTrace.Trace(MvxTraceLevel.Diagnostic, "View is disappearing");
}
public override void Disappeared()
{
MvxTrace.Trace(MvxTraceLevel.Diagnostic, "View has disappeared");
}
public IMvxCommand ShowSecondView
{
get { return new MvxCommand(ExecuteSecondViewCommand); }
}
private void ExecuteSecondViewCommand()
{
ShowViewModel<SecondViewModel>();
}
}
}

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

@ -0,0 +1,8 @@
using MvvmCross.Core.ViewModels;
namespace Eventhooks.Core.ViewModels
{
public class SecondViewModel : MvxViewModel
{
}
}

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

@ -0,0 +1,19 @@
Any raw assets you want to be deployed with your application can be placed in
this directory (and child directories) and given a Build Action of "AndroidAsset".
These files will be deployed with your package and will be accessible using Android's
AssetManager, like this:
public class ReadAsset : Activity
{
protected override void OnCreate (Bundle bundle)
{
base.OnCreate (bundle);
InputStream input = Assets.Open ("my_asset.txt");
}
}
Additionally, some Android functions will automatically load asset files:
Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf");

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

@ -0,0 +1,73 @@
<?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)' == '' ">AnyCPU</Platform>
<ProjectGuid>{795D9BF2-DE27-4B94-9128-FB405F996D37}</ProjectGuid>
<ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<RootNamespace>Eventhooks.Droid</RootNamespace>
<AssemblyName>Eventhooks.Core.Droid</AssemblyName>
<TargetFrameworkVersion>v7.0</TargetFrameworkVersion>
<AndroidApplication>True</AndroidApplication>
<AndroidResgenFile>Resources\Resource.designer.cs</AndroidResgenFile>
<AndroidResgenClass>Resource</AndroidResgenClass>
<AndroidManifest>Properties\AndroidManifest.xml</AndroidManifest>
<MonoAndroidResourcePrefix>Resources</MonoAndroidResourcePrefix>
<MonoAndroidAssetsPrefix>Assets</MonoAndroidAssetsPrefix>
<AndroidUseLatestPlatformSdk>true</AndroidUseLatestPlatformSdk>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AndroidLinkMode>None</AndroidLinkMode>
<AndroidSupportedAbis>arm64-v8a;armeabi;armeabi-v7a;x86</AndroidSupportedAbis>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AndroidManagedSymbols>true</AndroidManagedSymbols>
<AndroidUseSharedRuntime>false</AndroidUseSharedRuntime>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
<Reference Include="Mono.Android" />
</ItemGroup>
<ItemGroup>
<Compile Include="MainActivity.cs" />
<Compile Include="Resources\Resource.designer.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\AboutResources.txt" />
<None Include="Properties\AndroidManifest.xml" />
<None Include="Assets\AboutAssets.txt" />
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\layout\Main.axml" />
<AndroidResource Include="Resources\values\Strings.xml" />
<AndroidResource Include="Resources\mipmap-hdpi\Icon.png" />
<AndroidResource Include="Resources\mipmap-mdpi\Icon.png" />
<AndroidResource Include="Resources\mipmap-xhdpi\Icon.png" />
<AndroidResource Include="Resources\mipmap-xxhdpi\Icon.png" />
<AndroidResource Include="Resources\mipmap-xxxhdpi\Icon.png" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Eventhooks.Core\Eventhooks.Core.csproj">
<Project>{4720E13F-DAA5-4FB8-86B5-1C12117F0553}</Project>
<Name>Eventhooks.Core</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
</Project>

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

@ -0,0 +1,27 @@
using Android.App;
using Android.Widget;
using Android.OS;
namespace Eventhooks.Core.Droid
{
[Activity(Label = "Eventhooks", MainLauncher = true, Icon = "@mipmap/icon")]
public class MainActivity : Activity
{
int count = 1;
protected override void OnCreate(Bundle savedInstanceState)
{
base.OnCreate(savedInstanceState);
// Set our view from the "main" layout resource
SetContentView(Resource.Layout.Main);
// Get our button from the layout resource,
// and attach an event to it
Button button = FindViewById<Button>(Resource.Id.myButton);
button.Click += delegate { button.Text = string.Format("{0} clicks!", count++); };
}
}
}

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

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="com.company.eventhooks">
<uses-sdk android:minSdkVersion="15" />
<application android:label="Eventhooks">
</application>
</manifest>

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

@ -0,0 +1,27 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using Android.App;
// Information about this assembly is defined by the following attributes.
// Change them to the values specific to your project.
[assembly: AssemblyTitle("Eventhooks.Core.Droid")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("")]
[assembly: AssemblyCopyright("(c) Maurits van Beusekom")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
[assembly: AssemblyVersion("1.0.0")]
// The following attributes are used to specify the signing key for the assembly,
// if desired. See the Mono documentation for more information about signing.
//[assembly: AssemblyDelaySign(false)]
//[assembly: AssemblyKeyFile("")]

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

@ -0,0 +1,44 @@
Images, layout descriptions, binary blobs and string dictionaries can be included
in your application as resource files. Various Android APIs are designed to
operate on the resource IDs instead of dealing with images, strings or binary blobs
directly.
For example, a sample Android app that contains a user interface layout (main.axml),
an internationalization string table (strings.xml) and some icons (drawable-XXX/icon.png)
would keep its resources in the "Resources" directory of the application:
Resources/
drawable/
icon.png
layout/
main.axml
values/
strings.xml
In order to get the build system to recognize Android resources, set the build action to
"AndroidResource". The native Android APIs do not operate directly with filenames, but
instead operate on resource IDs. When you compile an Android application that uses resources,
the build system will package the resources for distribution and generate a class called "R"
(this is an Android convention) that contains the tokens for each one of the resources
included. For example, for the above Resources layout, this is what the R class would expose:
public class R {
public class drawable {
public const int icon = 0x123;
}
public class layout {
public const int main = 0x456;
}
public class strings {
public const int first_string = 0xabc;
public const int second_string = 0xbcd;
}
}
You would then use R.drawable.icon to reference the drawable/icon.png file, or R.layout.main
to reference the layout/main.axml file, or R.strings.first_string to reference the first
string in the dictionary file values/strings.xml.

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

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent">
<Button android:id="@+id/myButton" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="@string/hello" />
</LinearLayout>

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

После

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

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

После

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

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

После

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

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

После

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

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

После

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

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

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="hello">Hello World, Click Me!</string>
<string name="app_name">Eventhooks.Core.Droid</string>
</resources>

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

@ -0,0 +1,33 @@
using Foundation;
using MvvmCross.Core.ViewModels;
using MvvmCross.iOS.Platform;
using MvvmCross.Platform;
using UIKit;
namespace Eventhooks.iOS
{
[Register("AppDelegate")]
public partial class AppDelegate : MvxApplicationDelegate
{
public override UIWindow Window
{
get;
set;
}
public override bool FinishedLaunching(UIApplication app, NSDictionary options)
{
Window = new UIWindow(UIScreen.MainScreen.Bounds);
var setup = new Setup(this, Window);
setup.Initialize();
var startup = Mvx.Resolve<IMvxAppStart>();
startup.Start();
Window.MakeKeyAndVisible();
return true;
}
}
}

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

@ -0,0 +1,157 @@
{
"images": [
{
"idiom": "iphone",
"size": "29x29",
"scale": "1x"
},
{
"idiom": "iphone",
"size": "29x29",
"scale": "2x"
},
{
"idiom": "iphone",
"size": "29x29",
"scale": "3x"
},
{
"idiom": "iphone",
"size": "40x40",
"scale": "2x"
},
{
"idiom": "iphone",
"size": "40x40",
"scale": "3x"
},
{
"idiom": "iphone",
"size": "57x57",
"scale": "1x"
},
{
"idiom": "iphone",
"size": "57x57",
"scale": "2x"
},
{
"idiom": "iphone",
"size": "60x60",
"scale": "2x"
},
{
"idiom": "iphone",
"size": "60x60",
"scale": "3x"
},
{
"idiom": "ipad",
"size": "29x29",
"scale": "1x"
},
{
"idiom": "ipad",
"size": "29x29",
"scale": "2x"
},
{
"idiom": "ipad",
"size": "40x40",
"scale": "1x"
},
{
"idiom": "ipad",
"size": "40x40",
"scale": "2x"
},
{
"idiom": "ipad",
"size": "50x50",
"scale": "1x"
},
{
"idiom": "ipad",
"size": "50x50",
"scale": "2x"
},
{
"idiom": "ipad",
"size": "72x72",
"scale": "1x"
},
{
"idiom": "ipad",
"size": "72x72",
"scale": "2x"
},
{
"idiom": "ipad",
"size": "76x76",
"scale": "1x"
},
{
"idiom": "ipad",
"size": "76x76",
"scale": "2x"
},
{
"size": "24x24",
"idiom": "watch",
"scale": "2x",
"role": "notificationCenter",
"subtype": "38mm"
},
{
"size": "27.5x27.5",
"idiom": "watch",
"scale": "2x",
"role": "notificationCenter",
"subtype": "42mm"
},
{
"size": "29x29",
"idiom": "watch",
"role": "companionSettings",
"scale": "2x"
},
{
"size": "29x29",
"idiom": "watch",
"role": "companionSettings",
"scale": "3x"
},
{
"size": "40x40",
"idiom": "watch",
"scale": "2x",
"role": "appLauncher",
"subtype": "38mm"
},
{
"size": "44x44",
"idiom": "watch",
"scale": "2x",
"role": "longLook",
"subtype": "42mm"
},
{
"size": "86x86",
"idiom": "watch",
"scale": "2x",
"role": "quickLook",
"subtype": "38mm"
},
{
"size": "98x98",
"idiom": "watch",
"scale": "2x",
"role": "quickLook",
"subtype": "42mm"
}
],
"info": {
"version": 1,
"author": "xcode"
}
}

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

@ -0,0 +1,6 @@
{
"info" : {
"version" : 1,
"author" : "xcode"
}
}

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

@ -0,0 +1,31 @@
using System;
using System.Diagnostics;
using MvvmCross.Platform.Platform;
namespace Eventhooks.iOS
{
public class DebugTrace : IMvxTrace
{
public void Trace(MvxTraceLevel level, string tag, Func<string> message)
{
Debug.WriteLine(tag + ":" + level + ":" + message());
}
public void Trace(MvxTraceLevel level, string tag, string message)
{
Debug.WriteLine(tag + ":" + level + ":" + message);
}
public void Trace(MvxTraceLevel level, string tag, string message, params object[] args)
{
try
{
Debug.WriteLine(tag + ":" + level + ":" + message, args);
}
catch (FormatException)
{
Trace(MvxTraceLevel.Error, tag, "Exception during trace of {0} {1}", level, message);
}
}
}
}

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

@ -0,0 +1,6 @@
<?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>
</dict>
</plist>

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

@ -0,0 +1,156 @@
<?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>
<ProjectGuid>{CB7A8AB3-3ACD-4B32-9FEB-7C2C09F1C19A}</ProjectGuid>
<ProjectTypeGuids>{FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<OutputType>Exe</OutputType>
<RootNamespace>Eventhooks.iOS</RootNamespace>
<AssemblyName>Eventhooks.Core.iOS</AssemblyName>
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhoneSimulator' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\iPhoneSimulator\Debug</OutputPath>
<DefineConstants>DEBUG;ENABLE_TEST_CLOUD;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodesignKey>iPhone Developer</CodesignKey>
<MtouchDebug>true</MtouchDebug>
<MtouchFastDev>true</MtouchFastDev>
<MtouchProfiling>true</MtouchProfiling>
<MtouchUseSGen>true</MtouchUseSGen>
<MtouchUseRefCounting>true</MtouchUseRefCounting>
<IOSDebuggerPort>51632</IOSDebuggerPort>
<MtouchLink>None</MtouchLink>
<MtouchArch>x86_64</MtouchArch>
<MtouchHttpClientHandler>HttpClientHandler</MtouchHttpClientHandler>
<MtouchTlsProvider>Default</MtouchTlsProvider>
<DeviceSpecificBuild>false</DeviceSpecificBuild>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhone' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\iPhone\Release</OutputPath>
<DefineConstants></DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodesignKey>iPhone Developer</CodesignKey>
<MtouchUseSGen>true</MtouchUseSGen>
<MtouchUseRefCounting>true</MtouchUseRefCounting>
<MtouchFloat32>true</MtouchFloat32>
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
<MtouchLink>SdkOnly</MtouchLink>
<MtouchArch>ARMv7, ARM64</MtouchArch>
<MtouchHttpClientHandler>HttpClientHandler</MtouchHttpClientHandler>
<MtouchTlsProvider>Default</MtouchTlsProvider>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhoneSimulator' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\iPhoneSimulator\Release</OutputPath>
<DefineConstants></DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodesignKey>iPhone Developer</CodesignKey>
<MtouchUseSGen>true</MtouchUseSGen>
<MtouchUseRefCounting>true</MtouchUseRefCounting>
<MtouchLink>None</MtouchLink>
<MtouchArch>x86_64</MtouchArch>
<MtouchHttpClientHandler>HttpClientHandler</MtouchHttpClientHandler>
<MtouchTlsProvider>Default</MtouchTlsProvider>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhone' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\iPhone\Debug</OutputPath>
<DefineConstants>DEBUG;ENABLE_TEST_CLOUD;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodesignKey>iPhone Developer</CodesignKey>
<DeviceSpecificBuild>true</DeviceSpecificBuild>
<MtouchDebug>true</MtouchDebug>
<MtouchFastDev>true</MtouchFastDev>
<MtouchProfiling>true</MtouchProfiling>
<MtouchUseSGen>true</MtouchUseSGen>
<MtouchUseRefCounting>true</MtouchUseRefCounting>
<MtouchFloat32>true</MtouchFloat32>
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
<MtouchLink>SdkOnly</MtouchLink>
<MtouchArch>ARMv7, ARM64</MtouchArch>
<MtouchHttpClientHandler>HttpClientHandler</MtouchHttpClientHandler>
<MtouchTlsProvider>Default</MtouchTlsProvider>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
<Reference Include="Xamarin.iOS" />
</ItemGroup>
<ItemGroup>
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\Contents.json" />
<ImageAsset Include="Assets.xcassets\Contents.json" />
</ItemGroup>
<ItemGroup>
<Folder Include="Resources\" />
<Folder Include="Views\" />
</ItemGroup>
<ItemGroup>
<InterfaceDefinition Include="LaunchScreen.storyboard" />
<InterfaceDefinition Include="Views\SecondView.xib" />
<InterfaceDefinition Include="Views\FirstView.xib" />
</ItemGroup>
<ItemGroup>
<None Include="Info.plist" />
<None Include="Entitlements.plist" />
</ItemGroup>
<ItemGroup>
<Compile Include="Main.cs" />
<Compile Include="AppDelegate.cs" />
<Compile Include="Setup.cs" />
<Compile Include="DebugTrace.cs" />
<Compile Include="Views\SecondView.cs" />
<Compile Include="Views\SecondView.designer.cs">
<DependentUpon>SecondView.cs</DependentUpon>
</Compile>
<Compile Include="Views\FirstView.cs" />
<Compile Include="Views\FirstView.designer.cs">
<DependentUpon>FirstView.cs</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Eventhooks.Core\Eventhooks.Core.csproj">
<Project>{4720E13F-DAA5-4FB8-86B5-1C12117F0553}</Project>
<Name>Eventhooks.Core</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\MvvmCross\iOS\iOS\MvvmCross.iOS.csproj">
<Project>{E042EDD9-E89D-4928-BF4D-27F0FC29CEDA}</Project>
<Name>MvvmCross.iOS</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\MvvmCross\Core\Core\MvvmCross.Core.csproj">
<Project>{B6E27475-E7D0-448C-A5CC-5097DCA1E2DD}</Project>
<Name>MvvmCross.Core</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\MvvmCross\Platform\Platform\MvvmCross.Platform.csproj">
<Project>{CFF6F25A-3C3B-44EE-A54C-2ED4AAFF3ADB}</Project>
<Name>MvvmCross.Platform</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\MvvmCross\Platform\iOS\MvvmCross.Platform.iOS.csproj">
<Project>{BBBCD850-E7CB-4B6C-86D9-CE01F2B1C81C}</Project>
<Name>MvvmCross.Platform.iOS</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\MvvmCross\Core\Binding\MvvmCross.Binding.csproj">
<Project>{64DCD397-9019-41E8-A928-E5F5C5DF185B}</Project>
<Name>MvvmCross.Binding</Name>
</ProjectReference>
<ProjectReference Include="..\..\..\MvvmCross\Binding\iOS\MvvmCross.Binding.iOS.csproj">
<Project>{913B13B5-7B2C-4DDA-BECB-DADC827ED895}</Project>
<Name>MvvmCross.Binding.iOS</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
</Project>

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

@ -0,0 +1,48 @@
<?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>CFBundleName</key>
<string>Eventhooks</string>
<key>CFBundleIdentifier</key>
<string>com.company.eventhooks</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>MinimumOSVersion</key>
<string>8.0</string>
<key>UIDeviceFamily</key>
<array>
<integer>1</integer>
<integer>2</integer>
</array>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainNibFile</key>
<string>FirstView</string>
<key>UIMainStoryboardFile~ipad</key>
<string>Main</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>XSAppIconAssets</key>
<string>Assets.xcassets/AppIcon.appiconset</string>
</dict>
</plist>

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

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="9532" systemVersion="15D21" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" initialViewController="01J-lp-oVM">
<dependencies>
<deployment identifier="iOS" />
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="9530" />
</dependencies>
<scenes>
<!--View Controller-->
<scene sceneID="EHf-IW-A2E">
<objects>
<viewController id="01J-lp-oVM" sceneMemberID="viewController">
<layoutGuides>
<viewControllerLayoutGuide type="top" id="Llm-lL-Icb" />
<viewControllerLayoutGuide type="bottom" id="xb3-aO-Qok" />
</layoutGuides>
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
<rect key="frame" x="0.0" y="0.0" width="600" height="600" />
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES" />
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite" />
</view>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder" />
</objects>
<point key="canvasLocation" x="53" y="375" />
</scene>
</scenes>
</document>

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

@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using Foundation;
using UIKit;
namespace Eventhooks.iOS
{
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");
}
}
}

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

@ -0,0 +1,33 @@
namespace Eventhooks.iOS
{
using Eventhooks.Core;
using MvvmCross.Binding.Bindings.Target.Construction;
using MvvmCross.Core.ViewModels;
using MvvmCross.iOS.Platform;
using MvvmCross.iOS.Views.Presenters;
using MvvmCross.Platform.Platform;
using UIKit;
public class Setup : MvxIosSetup
{
public Setup(MvxApplicationDelegate applicationDelegate, UIWindow window)
: base(applicationDelegate, window)
{
}
public Setup(MvxApplicationDelegate applicationDelegate, IMvxIosViewPresenter presenter)
: base(applicationDelegate, presenter)
{
}
protected override IMvxApplication CreateApp()
{
return new App();
}
protected override IMvxTrace CreateDebugTrace()
{
return new DebugTrace();
}
}
}

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

@ -0,0 +1,34 @@
using System;
using UIKit;
namespace Eventhooks.iOS
{
public partial class ViewController : UIViewController
{
int count = 1;
public ViewController(IntPtr handle) : base(handle)
{
}
public override void ViewDidLoad()
{
base.ViewDidLoad();
// Perform any additional setup after loading the view, typically from a nib.
Button.AccessibilityIdentifier = "myButton";
Button.TouchUpInside += delegate
{
var title = string.Format("{0} clicks!", count++);
Button.SetTitle(title, UIControlState.Normal);
};
}
public override void DidReceiveMemoryWarning()
{
base.DidReceiveMemoryWarning();
// Release any cached data, images, etc that aren't in use.
}
}
}

25
TestProjects/Eventhooks/Eventhooks.iOS/ViewController.designer.cs сгенерированный Normal file
Просмотреть файл

@ -0,0 +1,25 @@
//
// This file has been generated automatically by MonoDevelop to store outlets and
// actions made in the Xcode designer. If it is removed, they will be lost.
// Manual changes to this file may not be handled correctly.
//
using Foundation;
namespace Eventhooks.Core.iOS
{
[Register("ViewController")]
partial class ViewController
{
[Outlet]
UIKit.UIButton Button { get; set; }
void ReleaseDesignerOutlets()
{
if (Button != null)
{
Button.Dispose();
Button = null;
}
}
}
}

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

@ -0,0 +1,33 @@
using System;
using Eventhooks.Core.ViewModels;
using MvvmCross.Binding.BindingContext;
using MvvmCross.iOS.Views;
using UIKit;
namespace Eventhooks.iOS
{
public partial class FirstView : MvxViewController<FirstViewModel>
{
public FirstView() : base("FirstView", null)
{
}
public override void ViewDidLoad()
{
base.ViewDidLoad();
// Perform any additional setup after loading the view, typically from a nib.
var bindingSet = this.CreateBindingSet<FirstView, FirstViewModel>();
bindingSet.Bind(SecondViewButton).To(vm => vm.ShowSecondView);
bindingSet.Apply();
}
public override void DidReceiveMemoryWarning()
{
base.DidReceiveMemoryWarning();
// Release any cached data, images, etc that aren't in use.
}
}
}

29
TestProjects/Eventhooks/Eventhooks.iOS/Views/FirstView.designer.cs сгенерированный Normal file
Просмотреть файл

@ -0,0 +1,29 @@
// WARNING
//
// This file has been generated automatically by Xamarin Studio from the outlets and
// actions declared in your storyboard file.
// Manual changes to this file will not be maintained.
//
using Foundation;
using System;
using System.CodeDom.Compiler;
using UIKit;
namespace Eventhooks.iOS
{
[Register ("FirstView")]
partial class FirstView
{
[Outlet]
[GeneratedCode ("iOS Designer", "1.0")]
UIKit.UIButton SecondViewButton { get; set; }
void ReleaseDesignerOutlets ()
{
if (SecondViewButton != null) {
SecondViewButton.Dispose ();
SecondViewButton = null;
}
}
}
}

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

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="11762" systemVersion="16C67" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES">
<dependencies>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="11757"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="FirstView">
<connections>
<outlet property="view" destination="2" id="RRd-Eg-VrN"/>
<outlet property="SecondViewButton" destination="5" id="name-outlet-5"/>
</connections>
</placeholder>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<view contentMode="scaleToFill" id="2">
<rect key="frame" x="0.0" y="0.0" width="600" height="600"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<subviews>
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" id="5" translatesAutoresizingMaskIntoConstraints="NO">
<rect key="frame" x="234.5" y="285" width="131" height="30"/>
<state key="normal" title="Open Second View">
<color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
</state>
</button>
</subviews>
<constraints>
<constraint id="6" firstItem="2" firstAttribute="centerX" secondItem="5" secondAttribute="centerX"/>
<constraint id="7" firstItem="5" firstAttribute="centerY" secondItem="2" secondAttribute="centerY"/>
</constraints>
</view>
</objects>
</document>

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

@ -0,0 +1,27 @@
using System;
using Eventhooks.Core.ViewModels;
using MvvmCross.iOS.Views;
using UIKit;
namespace Eventhooks.iOS
{
public partial class SecondView : MvxViewController<SecondViewModel>
{
public SecondView() : base("SecondView", null)
{
}
public override void ViewDidLoad()
{
base.ViewDidLoad();
// Perform any additional setup after loading the view, typically from a nib.
}
public override void DidReceiveMemoryWarning()
{
base.DidReceiveMemoryWarning();
// Release any cached data, images, etc that aren't in use.
}
}
}

21
TestProjects/Eventhooks/Eventhooks.iOS/Views/SecondView.designer.cs сгенерированный Normal file
Просмотреть файл

@ -0,0 +1,21 @@
// WARNING
//
// This file has been generated automatically by Xamarin Studio from the outlets and
// actions declared in your storyboard file.
// Manual changes to this file will not be maintained.
//
using Foundation;
using System;
using System.CodeDom.Compiler;
using UIKit;
namespace Eventhooks.iOS
{
[Register ("SecondView")]
partial class SecondView
{
void ReleaseDesignerOutlets ()
{
}
}
}

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

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="6211" systemVersion="14A298i" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES">
<dependencies>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="7703" />
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="SecondView">
<connections>
<outlet property="view" destination="2" id="RRd-Eg-VrN" />
</connections>
</placeholder>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder" />
<view contentMode="scaleToFill" id="2">
<rect key="frame" x="0.0" y="0.0" width="600" height="600" />
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite" />
</view>
</objects>
</document>

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

@ -67,7 +67,7 @@ Task("GitLink")
GitLink(sln.GetDirectory(),
new GitLinkSettings {
RepositoryUrl = "https://github.com/mvvmcross/mvvmcross",
ArgumentCustomization = args => args.Append("-ignore MasterDetailExample.Core,MasterDetailExample.Droid,MasterDetailExample.iOS,MasterDetailExample.UWP,PageRendererExample.Core,PageRendererExample.Droid,PageRendererExample.iOS,PageRendererExample.WindowsUWP,MvvmCross.iOS.Support.ExpandableTableView.Core,MvvmCross.iOS.Support.ExpandableTableView.iOS,MvvmCross.iOS.Support.JASidePanelsSample.Core,MvvmCross.iOS.Support.JASidePanelsSample.iOS,MvvmCross.iOS.Support.Tabs.Core,MvvmCross.iOS.Support.Tabs.iOS,MvvmCross.iOS.Support.XamarinSidebarSample.Core,MvvmCross.iOS.Support.XamarinSidebarSample.iOS,mvvmcross.codeanalysis.vsix,example,example.android,example.ios,example.windowsphone,example.core,example.droid,Example.W81")
ArgumentCustomization = args => args.Append("-ignore MasterDetailExample.Core,MasterDetailExample.Droid,MasterDetailExample.iOS,MasterDetailExample.UWP,PageRendererExample.Core,PageRendererExample.Droid,PageRendererExample.iOS,PageRendererExample.WindowsUWP,MvvmCross.iOS.Support.ExpandableTableView.Core,MvvmCross.iOS.Support.ExpandableTableView.iOS,MvvmCross.iOS.Support.JASidePanelsSample.Core,MvvmCross.iOS.Support.JASidePanelsSample.iOS,MvvmCross.iOS.Support.Tabs.Core,MvvmCross.iOS.Support.Tabs.iOS,MvvmCross.iOS.Support.XamarinSidebarSample.Core,MvvmCross.iOS.Support.XamarinSidebarSample.iOS,mvvmcross.codeanalysis.vsix,example,example.android,example.ios,example.windowsphone,example.core,example.droid,Example.W81,Eventhooks.Core,Eventhooks.Droid,Eventhooks.iOS")
});
});