Skip to content

Commit b6d83ac

Browse files
authored
Merge pull request xamarin#113 from xamarin/auto-wait
Auto wait
2 parents 1caf787 + 179980e commit b6d83ac

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+1547
-0
lines changed

ios10/AutoWait/AutoWait.sln

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 2012
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutoWait", "AutoWait\AutoWait.csproj", "{FCD9CD4D-93B0-46E3-800B-41E24052E38E}"
5+
EndProject
6+
Global
7+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
8+
Debug|iPhoneSimulator = Debug|iPhoneSimulator
9+
Release|iPhone = Release|iPhone
10+
Release|iPhoneSimulator = Release|iPhoneSimulator
11+
Debug|iPhone = Debug|iPhone
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{FCD9CD4D-93B0-46E3-800B-41E24052E38E}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
15+
{FCD9CD4D-93B0-46E3-800B-41E24052E38E}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
16+
{FCD9CD4D-93B0-46E3-800B-41E24052E38E}.Release|iPhone.ActiveCfg = Release|iPhone
17+
{FCD9CD4D-93B0-46E3-800B-41E24052E38E}.Release|iPhone.Build.0 = Release|iPhone
18+
{FCD9CD4D-93B0-46E3-800B-41E24052E38E}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
19+
{FCD9CD4D-93B0-46E3-800B-41E24052E38E}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
20+
{FCD9CD4D-93B0-46E3-800B-41E24052E38E}.Debug|iPhone.ActiveCfg = Debug|iPhone
21+
{FCD9CD4D-93B0-46E3-800B-41E24052E38E}.Debug|iPhone.Build.0 = Debug|iPhone
22+
EndGlobalSection
23+
EndGlobal
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
using UIKit;
2+
using Foundation;
3+
4+
namespace AutoWait
5+
{
6+
[Register ("AppDelegate")]
7+
public class AppDelegate : UIApplicationDelegate
8+
{
9+
public override UIWindow Window { get; set; }
10+
11+
public override bool FinishedLaunching (UIApplication application, NSDictionary launchOptions)
12+
{
13+
return true;
14+
}
15+
}
16+
}
Lines changed: 161 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,161 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5+
<Platform Condition=" '$(Platform)' == '' ">iPhoneSimulator</Platform>
6+
<ProjectGuid>{FCD9CD4D-93B0-46E3-800B-41E24052E38E}</ProjectGuid>
7+
<ProjectTypeGuids>{FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
8+
<OutputType>Exe</OutputType>
9+
<RootNamespace>AutoWait</RootNamespace>
10+
<AssemblyName>AutoWait</AssemblyName>
11+
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
12+
</PropertyGroup>
13+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhoneSimulator' ">
14+
<DebugSymbols>true</DebugSymbols>
15+
<DebugType>full</DebugType>
16+
<Optimize>false</Optimize>
17+
<OutputPath>bin\iPhoneSimulator\Debug</OutputPath>
18+
<DefineConstants>DEBUG;ENABLE_TEST_CLOUD;</DefineConstants>
19+
<ErrorReport>prompt</ErrorReport>
20+
<WarningLevel>4</WarningLevel>
21+
<CodesignKey>iPhone Developer</CodesignKey>
22+
<MtouchDebug>true</MtouchDebug>
23+
<MtouchFastDev>true</MtouchFastDev>
24+
<MtouchUseSGen>true</MtouchUseSGen>
25+
<MtouchUseRefCounting>true</MtouchUseRefCounting>
26+
<MtouchLink>None</MtouchLink>
27+
<MtouchArch>i386</MtouchArch>
28+
<MtouchHttpClientHandler>HttpClientHandler</MtouchHttpClientHandler>
29+
<MtouchTlsProvider>Default</MtouchTlsProvider>
30+
<PlatformTarget>x86</PlatformTarget>
31+
</PropertyGroup>
32+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhone' ">
33+
<DebugType>pdbonly</DebugType>
34+
<Optimize>true</Optimize>
35+
<OutputPath>bin\iPhone\Release</OutputPath>
36+
<ErrorReport>prompt</ErrorReport>
37+
<WarningLevel>4</WarningLevel>
38+
<CodesignKey>iPhone Developer</CodesignKey>
39+
<MtouchUseSGen>true</MtouchUseSGen>
40+
<MtouchUseRefCounting>true</MtouchUseRefCounting>
41+
<MtouchFloat32>true</MtouchFloat32>
42+
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
43+
<MtouchLink>SdkOnly</MtouchLink>
44+
<MtouchArch>ARMv7, ARM64</MtouchArch>
45+
<MtouchHttpClientHandler>HttpClientHandler</MtouchHttpClientHandler>
46+
<MtouchTlsProvider>Default</MtouchTlsProvider>
47+
<PlatformTarget>x86</PlatformTarget>
48+
</PropertyGroup>
49+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhoneSimulator' ">
50+
<DebugType>pdbonly</DebugType>
51+
<Optimize>true</Optimize>
52+
<OutputPath>bin\iPhoneSimulator\Release</OutputPath>
53+
<ErrorReport>prompt</ErrorReport>
54+
<WarningLevel>4</WarningLevel>
55+
<CodesignKey>iPhone Developer</CodesignKey>
56+
<MtouchUseSGen>true</MtouchUseSGen>
57+
<MtouchUseRefCounting>true</MtouchUseRefCounting>
58+
<MtouchLink>None</MtouchLink>
59+
<MtouchArch>i386</MtouchArch>
60+
<MtouchHttpClientHandler>HttpClientHandler</MtouchHttpClientHandler>
61+
<MtouchTlsProvider>Default</MtouchTlsProvider>
62+
<PlatformTarget>x86</PlatformTarget>
63+
</PropertyGroup>
64+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhone' ">
65+
<DebugSymbols>true</DebugSymbols>
66+
<DebugType>full</DebugType>
67+
<Optimize>false</Optimize>
68+
<OutputPath>bin\iPhone\Debug</OutputPath>
69+
<DefineConstants>DEBUG;ENABLE_TEST_CLOUD;</DefineConstants>
70+
<ErrorReport>prompt</ErrorReport>
71+
<WarningLevel>4</WarningLevel>
72+
<CodesignKey>iPhone Developer</CodesignKey>
73+
<DeviceSpecificBuild>true</DeviceSpecificBuild>
74+
<MtouchDebug>true</MtouchDebug>
75+
<MtouchFastDev>true</MtouchFastDev>
76+
<MtouchUseSGen>true</MtouchUseSGen>
77+
<MtouchUseRefCounting>true</MtouchUseRefCounting>
78+
<MtouchFloat32>true</MtouchFloat32>
79+
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
80+
<MtouchLink>SdkOnly</MtouchLink>
81+
<MtouchArch>ARMv7, ARM64</MtouchArch>
82+
<MtouchHttpClientHandler>HttpClientHandler</MtouchHttpClientHandler>
83+
<MtouchTlsProvider>Default</MtouchTlsProvider>
84+
<PlatformTarget>x86</PlatformTarget>
85+
</PropertyGroup>
86+
<ItemGroup>
87+
<Reference Include="System" />
88+
<Reference Include="System.Xml" />
89+
<Reference Include="System.Core" />
90+
<Reference Include="Xamarin.iOS" />
91+
</ItemGroup>
92+
<ItemGroup>
93+
<Folder Include="UserInterface\" />
94+
</ItemGroup>
95+
<ItemGroup>
96+
<InterfaceDefinition Include="Main.storyboard" />
97+
<InterfaceDefinition Include="LaunchScreen.storyboard" />
98+
</ItemGroup>
99+
<ItemGroup>
100+
<None Include="Info.plist" />
101+
<None Include="Entitlements.plist" />
102+
</ItemGroup>
103+
<ItemGroup>
104+
<Compile Include="Main.cs" />
105+
<Compile Include="AppDelegate.cs" />
106+
<Compile Include="UserInterface\MediaSelectionTableViewController.cs" />
107+
<Compile Include="UserInterface\MediaSelectionTableViewController.designer.cs">
108+
<DependentUpon>MediaSelectionTableViewController.cs</DependentUpon>
109+
</Compile>
110+
<Compile Include="UserInterface\MediaViewController.cs" />
111+
<Compile Include="UserInterface\MediaViewController.designer.cs">
112+
<DependentUpon>MediaViewController.cs</DependentUpon>
113+
</Compile>
114+
<Compile Include="UserInterface\PlaybackDetailsViewController.cs" />
115+
<Compile Include="UserInterface\PlaybackDetailsViewController.designer.cs">
116+
<DependentUpon>PlaybackDetailsViewController.cs</DependentUpon>
117+
</Compile>
118+
<Compile Include="UserInterface\PlaybackViewController.cs" />
119+
<Compile Include="UserInterface\PlaybackViewController.designer.cs">
120+
<DependentUpon>PlaybackViewController.cs</DependentUpon>
121+
</Compile>
122+
<Compile Include="UserInterface\PlayerView.cs" />
123+
<Compile Include="UserInterface\PlayerView.designer.cs">
124+
<DependentUpon>PlayerView.cs</DependentUpon>
125+
</Compile>
126+
</ItemGroup>
127+
<ItemGroup>
128+
<ImageAsset Include="Images.xcassets\Contents.json" />
129+
<ImageAsset Include="Images.xcassets\AppIcons.appiconset\Contents.json" />
130+
<ImageAsset Include="Images.xcassets\AppIcons.appiconset\Icon-app-60%403x.png" />
131+
<ImageAsset Include="Images.xcassets\AppIcons.appiconset\icon-app-57.png" />
132+
<ImageAsset Include="Images.xcassets\AppIcons.appiconset\icon-app-60%402x.png" />
133+
<ImageAsset Include="Images.xcassets\AppIcons.appiconset\icon-app-72.png" />
134+
<ImageAsset Include="Images.xcassets\AppIcons.appiconset\icon-app-72%402x.png" />
135+
<ImageAsset Include="Images.xcassets\AppIcons.appiconset\icon-app-76.png" />
136+
<ImageAsset Include="Images.xcassets\AppIcons.appiconset\icon-app-76%402x.png" />
137+
<ImageAsset Include="Images.xcassets\AppIcons.appiconset\icon-carplay-120.png" />
138+
<ImageAsset Include="Images.xcassets\AppIcons.appiconset\icon-spotlight-29.png" />
139+
<ImageAsset Include="Images.xcassets\AppIcons.appiconset\icon-spotlight-29%402x.png" />
140+
<ImageAsset Include="Images.xcassets\AppIcons.appiconset\icon-spotlight-29%403x.png" />
141+
<ImageAsset Include="Images.xcassets\AppIcons.appiconset\icon-spotlight-40.png" />
142+
<ImageAsset Include="Images.xcassets\AppIcons.appiconset\icon-spotlight-40%402x.png" />
143+
<ImageAsset Include="Images.xcassets\AppIcons.appiconset\icon-spotlight-40%403x.png" />
144+
<ImageAsset Include="Images.xcassets\AppIcons.appiconset\icon-spotlight-50.png" />
145+
<ImageAsset Include="Images.xcassets\AppIcons.appiconset\icon-spotlight-50%402x.png" />
146+
<ImageAsset Include="Images.xcassets\AppIcons.appiconset\icon-spp-57%402x.png" />
147+
<ImageAsset Include="Images.xcassets\AppIcons.appiconset\icon-watch-172.png" />
148+
<ImageAsset Include="Images.xcassets\AppIcons.appiconset\icon-watch-196.png" />
149+
<ImageAsset Include="Images.xcassets\AppIcons.appiconset\icon-watch-29%402x.png" />
150+
<ImageAsset Include="Images.xcassets\AppIcons.appiconset\icon-watch-29%403x.png" />
151+
<ImageAsset Include="Images.xcassets\AppIcons.appiconset\icon-watch-40%402x.png" />
152+
<ImageAsset Include="Images.xcassets\AppIcons.appiconset\icon-watch-44%402x.png" />
153+
<ImageAsset Include="Images.xcassets\AppIcons.appiconset\icon-watch-48.png" />
154+
<ImageAsset Include="Images.xcassets\AppIcons.appiconset\icon-watch-55.png" />
155+
<ImageAsset Include="Images.xcassets\splash-xamagon.imageset\Contents.json" />
156+
<ImageAsset Include="Images.xcassets\splash-xamagon.imageset\splash-xamagon.png" />
157+
<ImageAsset Include="Images.xcassets\splash-xamagon.imageset\splash-xamagon%402x.png" />
158+
<ImageAsset Include="Images.xcassets\splash-xamagon.imageset\splash-xamagon%403x.png" />
159+
</ItemGroup>
160+
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
161+
</Project>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8" ?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
</dict>
6+
</plist>

0 commit comments

Comments
 (0)