Update references to outdated project name

This commit is contained in:
E.Z. Hart 2016-03-28 16:02:08 -06:00
Родитель 57b0f3ab30
Коммит e969ddb727
5 изменённых файлов: 50 добавлений и 55 удалений

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

@ -18,16 +18,12 @@
<array/>
<key>MinimumOSVersion</key>
<string>6.1</string>
<key>NSMainNibFile</key>
<string></string>
<key>CFBundleDisplayName</key>
<string>XamControl</string>
<key>CFBundleIdentifier</key>
<string>com.xamarin.quickui.controlgallery</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>NSMainNibFile~ipad</key>
<string></string>
<key>CFBundleIconFiles</key>
<array>
<string>Default@2x.png</string>
@ -41,50 +37,49 @@
<string>Can we use your location</string>
<key>CFBundleShortVersionString</key>
<string></string>
<key>UILaunchImages</key>
<array>
<dict>
<key>UILaunchImageMinimumOSVersion</key>
<string>8.0</string>
<key>UILaunchImageName</key>
<string>Default-667h</string>
<key>UILaunchImageOrientation</key>
<string>Portrait</string>
<key>UILaunchImageSize</key>
<string>{375, 667}</string>
</dict>
<dict>
<key>UILaunchImageMinimumOSVersion</key>
<string>8.0</string>
<key>UILaunchImageName</key>
<string>Default-736h</string>
<key>UILaunchImageOrientation</key>
<string>Portrait</string>
<key>UILaunchImageSize</key>
<string>{414, 736}</string>
</dict>
<dict>
<key>UILaunchImageMinimumOSVersion</key>
<string>7.0</string>
<key>UILaunchImageName</key>
<string>Default-568h</string>
<key>UILaunchImageOrientation</key>
<string>Portrait</string>
<key>UILaunchImageSize</key>
<string>{320, 568}</string>
</dict>
<dict>
<key>UILaunchImageMinimumOSVersion</key>
<string>6.0</string>
<key>UILaunchImageName</key>
<string>Default</string>
<key>UILaunchImageOrientation</key>
<string>Portrait</string>
<key>UILaunchImageSize</key>
<string>{320, 480}</string>
</dict>
</array>
<key>UILaunchImages</key>
<array>
<dict>
<key>UILaunchImageMinimumOSVersion</key>
<string>8.0</string>
<key>UILaunchImageName</key>
<string>Default-667h</string>
<key>UILaunchImageOrientation</key>
<string>Portrait</string>
<key>UILaunchImageSize</key>
<string>{375, 667}</string>
</dict>
<dict>
<key>UILaunchImageMinimumOSVersion</key>
<string>8.0</string>
<key>UILaunchImageName</key>
<string>Default-736h</string>
<key>UILaunchImageOrientation</key>
<string>Portrait</string>
<key>UILaunchImageSize</key>
<string>{414, 736}</string>
</dict>
<dict>
<key>UILaunchImageMinimumOSVersion</key>
<string>7.0</string>
<key>UILaunchImageName</key>
<string>Default-568h</string>
<key>UILaunchImageOrientation</key>
<string>Portrait</string>
<key>UILaunchImageSize</key>
<string>{320, 568}</string>
</dict>
<dict>
<key>UILaunchImageMinimumOSVersion</key>
<string>6.0</string>
<key>UILaunchImageName</key>
<string>Default</string>
<key>UILaunchImageOrientation</key>
<string>Portrait</string>
<key>UILaunchImageSize</key>
<string>{320, 480}</string>
</dict>
</array>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads </key>

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

@ -16,6 +16,9 @@ namespace Xamarin.Forms.Controls
internal static class AppPaths
{
public static string ApkPath = "../../../Xamarin.Forms.ControlGallery.Android/bin/Debug/AndroidControlGallery.AndroidControlGallery-Signed.apk";
// Have to continue using the old BundleId for now; Test Cloud doesn't like
// when you change the BundleId
public static string BundleId = "com.xamarin.quickui.controlgallery";
}

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

@ -14,11 +14,6 @@ namespace Xamarin.Forms.Core.UITests
public static void Restart ()
{
App = null;
//App = ConfigureApp
// .iOS
// .Debug ()
// .InstalledApp ("com.xamarin.quickui.controlgallery")
// .StartApp ();
}
}
}

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

@ -20,6 +20,8 @@ namespace Xamarin.Forms.Core.UITests
App = ConfigureApp
.iOS
.Debug ()
// Keeping the old BundleId for now, Test Cloud doesn't
// like it when we update the BundleId for an existing app
.InstalledApp ("com.xamarin.quickui.controlgallery")
.StartApp (Xamarin.UITest.Configuration.AppDataMode.Clear);
}

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

@ -116,7 +116,7 @@ var button = new Button {
<param name="execute">An Action to execute when the Command is executed.</param>
<param name="canExecute">A <see cref="T:System.Func&lt;bool&gt;" /> indicating if the Command can be executed.</param>
<summary>Initializes a new instance of the Command class.</summary>
<remarks>Wehenever the value returned by canExecute has changed, a call to <see cref="M:Xamarin.QuickuI.Command.ChangeCanExecute" /> is required to trigger <see cref="E:System.Windows.Input.ICommand.CanExecuteChanged" />.</remarks>
<remarks>Whenever the value returned by canExecute has changed, a call to <see cref="M:Xamarin.Forms.Core.Command.ChangeCanExecute" /> is required to trigger <see cref="E:System.Windows.Input.ICommand.CanExecuteChanged" />.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
@ -140,7 +140,7 @@ var button = new Button {
<param name="execute">An Action&lt;object&gt; to execute when the Command is executed.</param>
<param name="canExecute">A <see cref="T:System.Func&lt;object,bool&gt;" /> indicating if the Command can be executed.</param>
<summary>Initializes a new instance of the Command class.</summary>
<remarks>Wehenever the value returned by canExecute has changed, a call to <see cref="M:Xamarin.QuickuI.Command.ChangeCanExecute" /> is required to trigger <see cref="E:System.Windows.Input.ICommand.CanExecuteChanged" />.</remarks>
<remarks>Whenever the value returned by canExecute has changed, a call to <see cref="M:Xamarin.Forms.Core.Command.ChangeCanExecute" /> is required to trigger <see cref="E:System.Windows.Input.ICommand.CanExecuteChanged" />.</remarks>
</Docs>
</Member>
<Member MemberName="CanExecute">