diff --git a/Apps/Contoso.Android.Puppet/ModulePages/AppCenterFragment.cs b/Apps/Contoso.Android.Puppet/ModulePages/AppCenterFragment.cs index 41e5f9271..a9e06e19d 100644 --- a/Apps/Contoso.Android.Puppet/ModulePages/AppCenterFragment.cs +++ b/Apps/Contoso.Android.Puppet/ModulePages/AppCenterFragment.cs @@ -114,7 +114,7 @@ private void LogWriteLevelClicked(object sender, EventArgs e) private void UserIdTextKeyPressedHandler(object sender, View.KeyEventArgs e) { - if (e.Event.Action == KeyEventActions.Down && e.KeyCode == Keycode.Enter) + if (e.Event.Action == KeyEventActions.Up) { var text = string.IsNullOrEmpty(UserIdText.Text) ? null : UserIdText.Text; AppCenter.SetUserId(text); diff --git a/Apps/Contoso.Android.Puppet/Properties/AndroidManifest.xml b/Apps/Contoso.Android.Puppet/Properties/AndroidManifest.xml index 4c86e3f18..297d747ff 100644 --- a/Apps/Contoso.Android.Puppet/Properties/AndroidManifest.xml +++ b/Apps/Contoso.Android.Puppet/Properties/AndroidManifest.xml @@ -1,5 +1,5 @@ - + diff --git a/Apps/Contoso.Android.Puppet/Properties/AssemblyInfo.cs b/Apps/Contoso.Android.Puppet/Properties/AssemblyInfo.cs index b3a0f2cdb..e26f02b84 100644 --- a/Apps/Contoso.Android.Puppet/Properties/AssemblyInfo.cs +++ b/Apps/Contoso.Android.Puppet/Properties/AssemblyInfo.cs @@ -25,5 +25,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] diff --git a/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.Droid/Contoso.Forms.Demo.Droid.csproj b/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.Droid/Contoso.Forms.Demo.Droid.csproj index c0d95eae8..b8218331c 100644 --- a/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.Droid/Contoso.Forms.Demo.Droid.csproj +++ b/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.Droid/Contoso.Forms.Demo.Droid.csproj @@ -15,7 +15,6 @@ Properties\AndroidManifest.xml Resources Assets - false diff --git a/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.Droid/Properties/AndroidManifest.xml b/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.Droid/Properties/AndroidManifest.xml index 2359b4117..35291dc22 100644 --- a/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.Droid/Properties/AndroidManifest.xml +++ b/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.Droid/Properties/AndroidManifest.xml @@ -1,4 +1,4 @@ - + diff --git a/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo/ModulePages/AppCenterContentPage.xaml b/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo/ModulePages/AppCenterContentPage.xaml index 9e7c0e6a3..ad5975743 100644 --- a/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo/ModulePages/AppCenterContentPage.xaml +++ b/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo/ModulePages/AppCenterContentPage.xaml @@ -3,12 +3,15 @@ xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="Contoso.Forms.Demo.AppCenterContentPage"> + + + - + diff --git a/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo/ModulePages/AppCenterContentPage.xaml.cs b/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo/ModulePages/AppCenterContentPage.xaml.cs index 10813f0cc..89576a71f 100644 --- a/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo/ModulePages/AppCenterContentPage.xaml.cs +++ b/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo/ModulePages/AppCenterContentPage.xaml.cs @@ -1,4 +1,5 @@ -using System; +using System.ComponentModel; +using System.Windows.Input; using Microsoft.AppCenter; using Xamarin.Forms; @@ -26,11 +27,35 @@ async void UpdateEnabled(object sender, ToggledEventArgs e) { await AppCenter.SetEnabledAsync(e.Value); } + } + + public class EntryCellTextChanged : INotifyPropertyChanged + { + public event PropertyChangedEventHandler PropertyChanged; + + private string _userId; - void UserIdCompleted(object sender, EventArgs e) + public string UserId { - var text = string.IsNullOrEmpty(UserIdEntryCell.Text) ? null : UserIdEntryCell.Text; - AppCenter.SetUserId(text); + get { return _userId; } + + set + { + _userId = value; + OnTextChanged(_userId); + } + } + + public ICommand TextChanged; + + protected virtual void OnTextChanged(string inputText) + { + if (PropertyChanged != null) + { + PropertyChanged(this, new PropertyChangedEventArgs(inputText)); + var text = string.IsNullOrEmpty(inputText) ? null : inputText; + AppCenter.SetUserId(text); + } } } } diff --git a/Apps/Contoso.Forms.Puppet/Contoso.Forms.Puppet.Droid/Properties/AndroidManifest.xml b/Apps/Contoso.Forms.Puppet/Contoso.Forms.Puppet.Droid/Properties/AndroidManifest.xml index 4a9cd4ecf..ca923d172 100644 --- a/Apps/Contoso.Forms.Puppet/Contoso.Forms.Puppet.Droid/Properties/AndroidManifest.xml +++ b/Apps/Contoso.Forms.Puppet/Contoso.Forms.Puppet.Droid/Properties/AndroidManifest.xml @@ -1,5 +1,5 @@ - + diff --git a/Apps/Contoso.Forms.Puppet/Contoso.Forms.Puppet.Droid/Properties/AssemblyInfo.cs b/Apps/Contoso.Forms.Puppet/Contoso.Forms.Puppet.Droid/Properties/AssemblyInfo.cs index 331fc87ef..e22b812aa 100644 --- a/Apps/Contoso.Forms.Puppet/Contoso.Forms.Puppet.Droid/Properties/AssemblyInfo.cs +++ b/Apps/Contoso.Forms.Puppet/Contoso.Forms.Puppet.Droid/Properties/AssemblyInfo.cs @@ -19,8 +19,8 @@ // and "{Major}.{Minor}.{Build}.*" will update just the revision. [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] // The following attributes are used to specify the signing key for the assembly, // if desired. See the Mono documentation for more information about signing. diff --git a/Apps/Contoso.Forms.Puppet/Contoso.Forms.Puppet.UWP/Package.appxmanifest b/Apps/Contoso.Forms.Puppet/Contoso.Forms.Puppet.UWP/Package.appxmanifest index 5eb705d93..1644a6e9f 100644 --- a/Apps/Contoso.Forms.Puppet/Contoso.Forms.Puppet.UWP/Package.appxmanifest +++ b/Apps/Contoso.Forms.Puppet/Contoso.Forms.Puppet.UWP/Package.appxmanifest @@ -1,6 +1,6 @@ - + AppCenter-Contoso.Forms.Puppet.UWP diff --git a/Apps/Contoso.Forms.Puppet/Contoso.Forms.Puppet.UWP/Properties/AssemblyInfo.cs b/Apps/Contoso.Forms.Puppet/Contoso.Forms.Puppet.UWP/Properties/AssemblyInfo.cs index 1bd5206fe..1124cdee5 100644 --- a/Apps/Contoso.Forms.Puppet/Contoso.Forms.Puppet.UWP/Properties/AssemblyInfo.cs +++ b/Apps/Contoso.Forms.Puppet/Contoso.Forms.Puppet.UWP/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] +[assembly: AssemblyFileVersion("1.14.0.0")] [assembly: ComVisible(false)] diff --git a/Apps/Contoso.Forms.Puppet/Contoso.Forms.Puppet.iOS/Info.plist b/Apps/Contoso.Forms.Puppet/Contoso.Forms.Puppet.iOS/Info.plist index 2fd3a0515..d11c5384a 100644 --- a/Apps/Contoso.Forms.Puppet/Contoso.Forms.Puppet.iOS/Info.plist +++ b/Apps/Contoso.Forms.Puppet/Contoso.Forms.Puppet.iOS/Info.plist @@ -5,9 +5,9 @@ CFBundleIdentifier com.microsoft.appcenter.xamarin.forms.puppet CFBundleShortVersionString - 1.13.2 + 1.14.0 CFBundleVersion - 1.13.2 + 1.14.0 LSRequiresIPhoneOS MinimumOSVersion diff --git a/Apps/Contoso.Forms.Puppet/Contoso.Forms.Puppet/Properties/AssemblyInfo.cs b/Apps/Contoso.Forms.Puppet/Contoso.Forms.Puppet/Properties/AssemblyInfo.cs index b891023a1..1d032b4bc 100644 --- a/Apps/Contoso.Forms.Puppet/Contoso.Forms.Puppet/Properties/AssemblyInfo.cs +++ b/Apps/Contoso.Forms.Puppet/Contoso.Forms.Puppet/Properties/AssemblyInfo.cs @@ -17,8 +17,8 @@ // and "{Major}.{Minor}.{Build}.*" will update just the revision. [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] // The following attributes are used to specify the signing key for the assembly, // if desired. See the Mono documentation for more information about signing. diff --git a/Apps/Contoso.UWP.Puppet/Package.appxmanifest b/Apps/Contoso.UWP.Puppet/Package.appxmanifest index 648559f9b..b59f98fae 100644 --- a/Apps/Contoso.UWP.Puppet/Package.appxmanifest +++ b/Apps/Contoso.UWP.Puppet/Package.appxmanifest @@ -1,6 +1,6 @@ - + AppCenter-Contoso.UWP.Puppet diff --git a/Apps/Contoso.UWP.Puppet/Properties/AssemblyInfo.cs b/Apps/Contoso.UWP.Puppet/Properties/AssemblyInfo.cs index 9dab6c911..bed0eb40d 100644 --- a/Apps/Contoso.UWP.Puppet/Properties/AssemblyInfo.cs +++ b/Apps/Contoso.UWP.Puppet/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] +[assembly: AssemblyFileVersion("1.14.0.0")] [assembly: ComVisible(false)] \ No newline at end of file diff --git a/Apps/Contoso.WPF.Puppet/Properties/AssemblyInfo.cs b/Apps/Contoso.WPF.Puppet/Properties/AssemblyInfo.cs index 93757165d..8ecbe89d1 100644 --- a/Apps/Contoso.WPF.Puppet/Properties/AssemblyInfo.cs +++ b/Apps/Contoso.WPF.Puppet/Properties/AssemblyInfo.cs @@ -27,5 +27,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] diff --git a/Apps/Contoso.WinForms.Puppet/Properties/AssemblyInfo.cs b/Apps/Contoso.WinForms.Puppet/Properties/AssemblyInfo.cs index ff980fb85..3de0d22dc 100644 --- a/Apps/Contoso.WinForms.Puppet/Properties/AssemblyInfo.cs +++ b/Apps/Contoso.WinForms.Puppet/Properties/AssemblyInfo.cs @@ -25,5 +25,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] diff --git a/Apps/Contoso.iOS.Puppet/Info.plist b/Apps/Contoso.iOS.Puppet/Info.plist index 54a015bb2..08ae24ff1 100644 --- a/Apps/Contoso.iOS.Puppet/Info.plist +++ b/Apps/Contoso.iOS.Puppet/Info.plist @@ -7,9 +7,9 @@ CFBundleIdentifier com.microsoft.appcenter.xamarin.puppet CFBundleShortVersionString - 1.13.2 + 1.14.0 CFBundleVersion - 1.13.2 + 1.14.0 LSRequiresIPhoneOS MinimumOSVersion diff --git a/CHANGELOG.md b/CHANGELOG.md index fa5ca8fd1..8152ebef4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,30 @@ # App Center SDK for .NET Change Log +## Version 1.14.0 + +### AppCenter + +#### iOS + +* **[Fix]** Fix a crash in case decrypting a value failed. + +#### Android + +* **[Fix]** Fix network connection state tracking issue, which prevented sending data in some restricted networks. +* **[Fix]** Fix possible deadlock on changing network connection state. + +### AppCenterPush + +#### iOS + +* **[Fix]** Fix crash on invoking an optional push callback when it isn't implemented in the push delegate. + +### AppCenterDistribute + +#### Android + +* **[Fix]** Fix in-app updates not working on devices using Xiaomi MIUI from versions 10 and above. + ## Version 1.13.2 ### AppCenter diff --git a/SDK/AppCenter/Microsoft.AppCenter.Android.Bindings/Properties/AssemblyInfo.cs b/SDK/AppCenter/Microsoft.AppCenter.Android.Bindings/Properties/AssemblyInfo.cs index d77d58a16..17e160119 100644 --- a/SDK/AppCenter/Microsoft.AppCenter.Android.Bindings/Properties/AssemblyInfo.cs +++ b/SDK/AppCenter/Microsoft.AppCenter.Android.Bindings/Properties/AssemblyInfo.cs @@ -26,5 +26,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] diff --git a/SDK/AppCenter/Microsoft.AppCenter.Android/Properties/AssemblyInfo.cs b/SDK/AppCenter/Microsoft.AppCenter.Android/Properties/AssemblyInfo.cs index 85e3ab1c5..497f25134 100644 --- a/SDK/AppCenter/Microsoft.AppCenter.Android/Properties/AssemblyInfo.cs +++ b/SDK/AppCenter/Microsoft.AppCenter.Android/Properties/AssemblyInfo.cs @@ -25,5 +25,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] diff --git a/SDK/AppCenter/Microsoft.AppCenter.Shared/WrapperSdk.cs b/SDK/AppCenter/Microsoft.AppCenter.Shared/WrapperSdk.cs index 90dd17070..6258fcf40 100644 --- a/SDK/AppCenter/Microsoft.AppCenter.Shared/WrapperSdk.cs +++ b/SDK/AppCenter/Microsoft.AppCenter.Shared/WrapperSdk.cs @@ -5,6 +5,6 @@ public static class WrapperSdk public const string Name = "appcenter.xamarin"; /* We can't use reflection for assemblyInformationalVersion on iOS with "Link All" optimization. */ - internal const string Version = "1.13.2-SNAPSHOT"; + internal const string Version = "1.14.0-SNAPSHOT"; } } diff --git a/SDK/AppCenter/Microsoft.AppCenter.UWP/Properties/AssemblyInfo.cs b/SDK/AppCenter/Microsoft.AppCenter.UWP/Properties/AssemblyInfo.cs index 7993e5bd2..e781156c4 100644 --- a/SDK/AppCenter/Microsoft.AppCenter.UWP/Properties/AssemblyInfo.cs +++ b/SDK/AppCenter/Microsoft.AppCenter.UWP/Properties/AssemblyInfo.cs @@ -25,7 +25,7 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] [assembly: ComVisible(false)] [assembly: InternalsVisibleTo("Microsoft.AppCenter.Test.UWP")] \ No newline at end of file diff --git a/SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/Properties/AssemblyInfo.cs b/SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/Properties/AssemblyInfo.cs index 06ec7550d..265a9de83 100644 --- a/SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/Properties/AssemblyInfo.cs +++ b/SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/Properties/AssemblyInfo.cs @@ -25,6 +25,6 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] [assembly: InternalsVisibleTo("Microsoft.AppCenter.Test.WindowsDesktop")] diff --git a/SDK/AppCenter/Microsoft.AppCenter.iOS.Bindings/Properties/AssemblyInfo.cs b/SDK/AppCenter/Microsoft.AppCenter.iOS.Bindings/Properties/AssemblyInfo.cs index 87ecc474d..df51cd563 100644 --- a/SDK/AppCenter/Microsoft.AppCenter.iOS.Bindings/Properties/AssemblyInfo.cs +++ b/SDK/AppCenter/Microsoft.AppCenter.iOS.Bindings/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] diff --git a/SDK/AppCenter/Microsoft.AppCenter.iOS/Properties/AssemblyInfo.cs b/SDK/AppCenter/Microsoft.AppCenter.iOS/Properties/AssemblyInfo.cs index 4d5c5d5f1..a67f2a409 100644 --- a/SDK/AppCenter/Microsoft.AppCenter.iOS/Properties/AssemblyInfo.cs +++ b/SDK/AppCenter/Microsoft.AppCenter.iOS/Properties/AssemblyInfo.cs @@ -23,5 +23,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] diff --git a/SDK/AppCenter/Microsoft.AppCenter/Microsoft.AppCenter.csproj b/SDK/AppCenter/Microsoft.AppCenter/Microsoft.AppCenter.csproj index 61499e660..e8d531757 100644 --- a/SDK/AppCenter/Microsoft.AppCenter/Microsoft.AppCenter.csproj +++ b/SDK/AppCenter/Microsoft.AppCenter/Microsoft.AppCenter.csproj @@ -7,9 +7,9 @@ Microsoft Corp. All rights reserved. Microsoft.AppCenter.Core Microsoft Corporation - 1.13.2-SNAPSHOT + 1.14.0-SNAPSHOT 0.0.0.0 - 1.13.2.0 + 1.14.0.0 Microsoft.AppCenter.Core bin\$(Configuration)\$(TargetFramework)\Microsoft.AppCenter.xml diff --git a/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Android.Bindings/Properties/AssemblyInfo.cs b/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Android.Bindings/Properties/AssemblyInfo.cs index 3c1066281..83621ce92 100644 --- a/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Android.Bindings/Properties/AssemblyInfo.cs +++ b/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Android.Bindings/Properties/AssemblyInfo.cs @@ -18,8 +18,8 @@ // and "{Major}.{Minor}.{Build}.*" will update just the revision. [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] // The following attributes are used to specify the signing key for the assembly, // if desired. See the Mono documentation for more information about signing. diff --git a/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Android/Properties/AssemblyInfo.cs b/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Android/Properties/AssemblyInfo.cs index 5305dc820..21e420626 100644 --- a/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Android/Properties/AssemblyInfo.cs +++ b/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Android/Properties/AssemblyInfo.cs @@ -25,5 +25,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] diff --git a/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.UWP/Properties/AssemblyInfo.cs b/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.UWP/Properties/AssemblyInfo.cs index fd279405f..e2b9fe8be 100644 --- a/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.UWP/Properties/AssemblyInfo.cs +++ b/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.UWP/Properties/AssemblyInfo.cs @@ -29,6 +29,6 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] -[assembly: AssemblyFileVersion("1.13.2.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] [assembly: ComVisible(false)] diff --git a/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.WindowsDesktop/Properties/AssemblyInfo.cs b/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.WindowsDesktop/Properties/AssemblyInfo.cs index daed0fea5..674ad07e9 100644 --- a/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.WindowsDesktop/Properties/AssemblyInfo.cs +++ b/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.WindowsDesktop/Properties/AssemblyInfo.cs @@ -23,5 +23,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] diff --git a/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.iOS.Bindings/Properties/AssemblyInfo.cs b/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.iOS.Bindings/Properties/AssemblyInfo.cs index d7a9960cd..1d19a9146 100644 --- a/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.iOS.Bindings/Properties/AssemblyInfo.cs +++ b/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.iOS.Bindings/Properties/AssemblyInfo.cs @@ -30,5 +30,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] diff --git a/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.iOS/Properties/AssemblyInfo.cs b/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.iOS/Properties/AssemblyInfo.cs index fd79734ec..1b4275c18 100644 --- a/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.iOS/Properties/AssemblyInfo.cs +++ b/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.iOS/Properties/AssemblyInfo.cs @@ -23,5 +23,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] diff --git a/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics/Microsoft.AppCenter.Analytics.csproj b/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics/Microsoft.AppCenter.Analytics.csproj index 6adc509e4..1697ca8fe 100644 --- a/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics/Microsoft.AppCenter.Analytics.csproj +++ b/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics/Microsoft.AppCenter.Analytics.csproj @@ -6,9 +6,9 @@ Microsoft Corp. All rights reserved. Microsoft.AppCenter.Analytics Microsoft Corporation - 1.13.2-SNAPSHOT + 1.14.0-SNAPSHOT 0.0.0.0 - 1.13.2.0 + 1.14.0.0 Microsoft.AppCenter.Analytics bin\$(Configuration)\$(TargetFramework)\Microsoft.AppCenter.Analytics.xml diff --git a/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Android.Bindings/Properties/AssemblyInfo.cs b/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Android.Bindings/Properties/AssemblyInfo.cs index d5d9b60a1..3d8db51d7 100644 --- a/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Android.Bindings/Properties/AssemblyInfo.cs +++ b/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Android.Bindings/Properties/AssemblyInfo.cs @@ -17,8 +17,8 @@ // and "{Major}.{Minor}.{Build}.*" will update just the revision. [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] // The following attributes are used to specify the signing key for the assembly, // if desired. See the Mono documentation for more information about signing. diff --git a/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Android/Properties/AssemblyInfo.cs b/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Android/Properties/AssemblyInfo.cs index aa8149dd9..dbf6a3c59 100644 --- a/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Android/Properties/AssemblyInfo.cs +++ b/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Android/Properties/AssemblyInfo.cs @@ -26,5 +26,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] diff --git a/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.UWP/Properties/AssemblyInfo.cs b/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.UWP/Properties/AssemblyInfo.cs index 5e9a25205..f9ca74141 100644 --- a/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.UWP/Properties/AssemblyInfo.cs +++ b/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.UWP/Properties/AssemblyInfo.cs @@ -29,6 +29,6 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] [assembly: ComVisible(false)] \ No newline at end of file diff --git a/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.WindowsDesktop/Properties/AssemblyInfo.cs b/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.WindowsDesktop/Properties/AssemblyInfo.cs index 24f6c7b92..facf722b3 100644 --- a/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.WindowsDesktop/Properties/AssemblyInfo.cs +++ b/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.WindowsDesktop/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] diff --git a/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.iOS.Bindings/Properties/AssemblyInfo.cs b/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.iOS.Bindings/Properties/AssemblyInfo.cs index d458f6a3e..ef8c04ed7 100644 --- a/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.iOS.Bindings/Properties/AssemblyInfo.cs +++ b/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.iOS.Bindings/Properties/AssemblyInfo.cs @@ -30,5 +30,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] diff --git a/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.iOS/Properties/AssemblyInfo.cs b/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.iOS/Properties/AssemblyInfo.cs index 60a6b4e75..3c25438e9 100644 --- a/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.iOS/Properties/AssemblyInfo.cs +++ b/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.iOS/Properties/AssemblyInfo.cs @@ -23,5 +23,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] diff --git a/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes/Microsoft.AppCenter.Crashes.csproj b/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes/Microsoft.AppCenter.Crashes.csproj index 1742f74c7..48625c38a 100644 --- a/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes/Microsoft.AppCenter.Crashes.csproj +++ b/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes/Microsoft.AppCenter.Crashes.csproj @@ -7,9 +7,9 @@ Microsoft Corp. All rights reserved. Microsoft.AppCenter.Crashes Microsoft Corporation - 1.13.2-SNAPSHOT + 1.14.0-SNAPSHOT 0.0.0.0 - 1.13.2.0 + 1.14.0.0 Microsoft.AppCenter.Crashes bin\$(Configuration)\$(TargetFramework)\Microsoft.AppCenter.Crashes.xml diff --git a/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Android.Bindings/Properties/AssemblyInfo.cs b/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Android.Bindings/Properties/AssemblyInfo.cs index d3f14558a..a36e74e9b 100644 --- a/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Android.Bindings/Properties/AssemblyInfo.cs +++ b/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Android.Bindings/Properties/AssemblyInfo.cs @@ -17,8 +17,8 @@ // and "{Major}.{Minor}.{Build}.*" will update just the revision. [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] // The following attributes are used to specify the signing key for the assembly, // if desired. See the Mono documentation for more information about signing. diff --git a/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Android/Properties/AssemblyInfo.cs b/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Android/Properties/AssemblyInfo.cs index c5f597d82..44ddd9148 100644 --- a/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Android/Properties/AssemblyInfo.cs +++ b/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Android/Properties/AssemblyInfo.cs @@ -25,5 +25,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] diff --git a/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.iOS.Bindings/Properties/AssemblyInfo.cs b/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.iOS.Bindings/Properties/AssemblyInfo.cs index 621b7fe4b..32633af3e 100644 --- a/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.iOS.Bindings/Properties/AssemblyInfo.cs +++ b/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.iOS.Bindings/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] diff --git a/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.iOS/Properties/AssemblyInfo.cs b/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.iOS/Properties/AssemblyInfo.cs index 2a9bacf14..ce1c92ba5 100644 --- a/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.iOS/Properties/AssemblyInfo.cs +++ b/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.iOS/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] diff --git a/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute/Microsoft.AppCenter.Distribute.csproj b/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute/Microsoft.AppCenter.Distribute.csproj index 4390e82ba..422868793 100644 --- a/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute/Microsoft.AppCenter.Distribute.csproj +++ b/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute/Microsoft.AppCenter.Distribute.csproj @@ -7,9 +7,9 @@ Microsoft Corp. All rights reserved. Microsoft.AppCenter.Distribute Microsoft Corporation - 1.13.2-SNAPSHOT + 1.14.0-SNAPSHOT 0.0.0.0 - 1.13.2.0 + 1.14.0.0 Microsoft.AppCenter.Distribute bin\$(Configuration)\$(TargetFramework)\Microsoft.AppCenter.Distribute.xml diff --git a/SDK/AppCenterPush/Microsoft.AppCenter.Push.Android.Bindings/Properties/AssemblyInfo.cs b/SDK/AppCenterPush/Microsoft.AppCenter.Push.Android.Bindings/Properties/AssemblyInfo.cs index 09e28a7a6..a58949a3c 100644 --- a/SDK/AppCenterPush/Microsoft.AppCenter.Push.Android.Bindings/Properties/AssemblyInfo.cs +++ b/SDK/AppCenterPush/Microsoft.AppCenter.Push.Android.Bindings/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] diff --git a/SDK/AppCenterPush/Microsoft.AppCenter.Push.Android/Properties/AssemblyInfo.cs b/SDK/AppCenterPush/Microsoft.AppCenter.Push.Android/Properties/AssemblyInfo.cs index 7868b721e..7631068be 100644 --- a/SDK/AppCenterPush/Microsoft.AppCenter.Push.Android/Properties/AssemblyInfo.cs +++ b/SDK/AppCenterPush/Microsoft.AppCenter.Push.Android/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] diff --git a/SDK/AppCenterPush/Microsoft.AppCenter.Push.UWP/Properties/AssemblyInfo.cs b/SDK/AppCenterPush/Microsoft.AppCenter.Push.UWP/Properties/AssemblyInfo.cs index 1987c5a0b..bfa4f8d61 100644 --- a/SDK/AppCenterPush/Microsoft.AppCenter.Push.UWP/Properties/AssemblyInfo.cs +++ b/SDK/AppCenterPush/Microsoft.AppCenter.Push.UWP/Properties/AssemblyInfo.cs @@ -28,6 +28,6 @@ [assembly: ReferenceAssembly] #endif [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] +[assembly: AssemblyFileVersion("1.14.0.0")] [assembly: ComVisible(false)] [assembly: InternalsVisibleTo("Microsoft.AppCenter.Test.UWP")] \ No newline at end of file diff --git a/SDK/AppCenterPush/Microsoft.AppCenter.Push.iOS.Bindings/Properties/AssemblyInfo.cs b/SDK/AppCenterPush/Microsoft.AppCenter.Push.iOS.Bindings/Properties/AssemblyInfo.cs index 0221d1cce..32d9351d0 100644 --- a/SDK/AppCenterPush/Microsoft.AppCenter.Push.iOS.Bindings/Properties/AssemblyInfo.cs +++ b/SDK/AppCenterPush/Microsoft.AppCenter.Push.iOS.Bindings/Properties/AssemblyInfo.cs @@ -30,5 +30,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] diff --git a/SDK/AppCenterPush/Microsoft.AppCenter.Push.iOS/Properties/AssemblyInfo.cs b/SDK/AppCenterPush/Microsoft.AppCenter.Push.iOS/Properties/AssemblyInfo.cs index f130cc707..ee7bebdce 100644 --- a/SDK/AppCenterPush/Microsoft.AppCenter.Push.iOS/Properties/AssemblyInfo.cs +++ b/SDK/AppCenterPush/Microsoft.AppCenter.Push.iOS/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] diff --git a/SDK/AppCenterPush/Microsoft.AppCenter.Push/Microsoft.AppCenter.Push.csproj b/SDK/AppCenterPush/Microsoft.AppCenter.Push/Microsoft.AppCenter.Push.csproj index 5b9735e84..256e61598 100644 --- a/SDK/AppCenterPush/Microsoft.AppCenter.Push/Microsoft.AppCenter.Push.csproj +++ b/SDK/AppCenterPush/Microsoft.AppCenter.Push/Microsoft.AppCenter.Push.csproj @@ -7,9 +7,9 @@ Microsoft Corp. All rights reserved. Microsoft.AppCenter.Push Microsoft Corporation - 1.13.2-SNAPSHOT + 1.14.0-SNAPSHOT 0.0.0.0 - 1.13.2.0 + 1.14.0.0 Microsoft.AppCenter.Push bin\$(Configuration)\$(TargetFramework)\Microsoft.AppCenter.Push.xml diff --git a/SDK/AppCenterRum/Microsoft.AppCenter.Rum.Android/Properties/AssemblyInfo.cs b/SDK/AppCenterRum/Microsoft.AppCenter.Rum.Android/Properties/AssemblyInfo.cs index cfc2c86e7..e8525dcfe 100644 --- a/SDK/AppCenterRum/Microsoft.AppCenter.Rum.Android/Properties/AssemblyInfo.cs +++ b/SDK/AppCenterRum/Microsoft.AppCenter.Rum.Android/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] diff --git a/SDK/AppCenterRum/Microsoft.AppCenter.Rum.UWP/Properties/AssemblyInfo.cs b/SDK/AppCenterRum/Microsoft.AppCenter.Rum.UWP/Properties/AssemblyInfo.cs index 821ab09cb..ed8ea17c0 100644 --- a/SDK/AppCenterRum/Microsoft.AppCenter.Rum.UWP/Properties/AssemblyInfo.cs +++ b/SDK/AppCenterRum/Microsoft.AppCenter.Rum.UWP/Properties/AssemblyInfo.cs @@ -25,5 +25,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] +[assembly: AssemblyFileVersion("1.14.0.0")] [assembly: ComVisible(false)] \ No newline at end of file diff --git a/SDK/AppCenterRum/Microsoft.AppCenter.Rum/Microsoft.AppCenter.Rum.csproj b/SDK/AppCenterRum/Microsoft.AppCenter.Rum/Microsoft.AppCenter.Rum.csproj index a8895d702..1b9616c08 100644 --- a/SDK/AppCenterRum/Microsoft.AppCenter.Rum/Microsoft.AppCenter.Rum.csproj +++ b/SDK/AppCenterRum/Microsoft.AppCenter.Rum/Microsoft.AppCenter.Rum.csproj @@ -7,9 +7,9 @@ Microsoft Corp. All rights reserved. Microsoft.AppCenter.Rum Microsoft Corporation - 1.13.2-SNAPSHOT + 1.14.0-SNAPSHOT 0.0.0.0 - 1.13.2.0 + 1.14.0.0 Microsoft.AppCenter.Rum bin\$(Configuration)\$(TargetFramework)\Microsoft.AppCenter.Rum.xml diff --git a/Tests/Contoso.Forms.Test/Properties/AssemblyInfo.cs b/Tests/Contoso.Forms.Test/Properties/AssemblyInfo.cs index f90ad6629..839c3d03b 100644 --- a/Tests/Contoso.Forms.Test/Properties/AssemblyInfo.cs +++ b/Tests/Contoso.Forms.Test/Properties/AssemblyInfo.cs @@ -17,8 +17,8 @@ // and "{Major}.{Minor}.{Build}.*" will update just the revision. [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] // The following attributes are used to specify the signing key for the assembly, // if desired. See the Mono documentation for more information about signing. diff --git a/Tests/Droid/Properties/AndroidManifest.xml b/Tests/Droid/Properties/AndroidManifest.xml index 6078f248a..62975a30f 100644 --- a/Tests/Droid/Properties/AndroidManifest.xml +++ b/Tests/Droid/Properties/AndroidManifest.xml @@ -1,5 +1,5 @@ - + \ No newline at end of file diff --git a/Tests/Droid/Properties/AssemblyInfo.cs b/Tests/Droid/Properties/AssemblyInfo.cs index 0a9e162d5..0f291b4cb 100644 --- a/Tests/Droid/Properties/AssemblyInfo.cs +++ b/Tests/Droid/Properties/AssemblyInfo.cs @@ -17,8 +17,8 @@ // and "{Major}.{Minor}.{Build}.*" will update just the revision. [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] // The following attributes are used to specify the signing key for the assembly, // if desired. See the Mono documentation for more information about signing. diff --git a/Tests/Microsoft.AppCenter.Analytics.NET/Properties/AssemblyInfo.cs b/Tests/Microsoft.AppCenter.Analytics.NET/Properties/AssemblyInfo.cs index c48a2a994..acc33ec50 100644 --- a/Tests/Microsoft.AppCenter.Analytics.NET/Properties/AssemblyInfo.cs +++ b/Tests/Microsoft.AppCenter.Analytics.NET/Properties/AssemblyInfo.cs @@ -33,7 +33,7 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] [assembly: InternalsVisibleTo("Microsoft.AppCenter.Analytics.Test.Windows")] \ No newline at end of file diff --git a/Tests/Microsoft.AppCenter.Analytics.Test.Windows/Properties/AssemblyInfo.cs b/Tests/Microsoft.AppCenter.Analytics.Test.Windows/Properties/AssemblyInfo.cs index 0fa774e08..8493e68c3 100644 --- a/Tests/Microsoft.AppCenter.Analytics.Test.Windows/Properties/AssemblyInfo.cs +++ b/Tests/Microsoft.AppCenter.Analytics.Test.Windows/Properties/AssemblyInfo.cs @@ -16,5 +16,5 @@ // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] diff --git a/Tests/Microsoft.AppCenter.NET/Properties/AssemblyInfo.cs b/Tests/Microsoft.AppCenter.NET/Properties/AssemblyInfo.cs index 9e7822f33..cdbb722a0 100644 --- a/Tests/Microsoft.AppCenter.NET/Properties/AssemblyInfo.cs +++ b/Tests/Microsoft.AppCenter.NET/Properties/AssemblyInfo.cs @@ -33,8 +33,8 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] [assembly: InternalsVisibleTo("Microsoft.AppCenter.Test.Windows")] [assembly: InternalsVisibleTo("Microsoft.AppCenter.Analytics.Test.Windows")] diff --git a/Tests/Microsoft.AppCenter.Push.NET/Properties/AssemblyInfo.cs b/Tests/Microsoft.AppCenter.Push.NET/Properties/AssemblyInfo.cs index ca9ed8790..b0c9f8fe5 100644 --- a/Tests/Microsoft.AppCenter.Push.NET/Properties/AssemblyInfo.cs +++ b/Tests/Microsoft.AppCenter.Push.NET/Properties/AssemblyInfo.cs @@ -33,4 +33,4 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] +[assembly: AssemblyFileVersion("1.14.0.0")] diff --git a/Tests/Microsoft.AppCenter.Push.Test.Windows/Properties/AssemblyInfo.cs b/Tests/Microsoft.AppCenter.Push.Test.Windows/Properties/AssemblyInfo.cs index 4fd3659f0..3987dfbd0 100644 --- a/Tests/Microsoft.AppCenter.Push.Test.Windows/Properties/AssemblyInfo.cs +++ b/Tests/Microsoft.AppCenter.Push.Test.Windows/Properties/AssemblyInfo.cs @@ -33,4 +33,4 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] +[assembly: AssemblyFileVersion("1.14.0.0")] diff --git a/Tests/Microsoft.AppCenter.Test.UWP/Package.appxmanifest b/Tests/Microsoft.AppCenter.Test.UWP/Package.appxmanifest index bf547e962..4135d7683 100644 --- a/Tests/Microsoft.AppCenter.Test.UWP/Package.appxmanifest +++ b/Tests/Microsoft.AppCenter.Test.UWP/Package.appxmanifest @@ -7,7 +7,7 @@ + Version="1.14.0.0" /> diff --git a/Tests/Microsoft.AppCenter.Test.UWP/Properties/AssemblyInfo.cs b/Tests/Microsoft.AppCenter.Test.UWP/Properties/AssemblyInfo.cs index 4144ee268..fb38c79cd 100644 --- a/Tests/Microsoft.AppCenter.Test.UWP/Properties/AssemblyInfo.cs +++ b/Tests/Microsoft.AppCenter.Test.UWP/Properties/AssemblyInfo.cs @@ -14,5 +14,5 @@ // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] +[assembly: AssemblyFileVersion("1.14.0.0")] [assembly: ComVisible(false)] \ No newline at end of file diff --git a/Tests/Microsoft.AppCenter.Test.Windows/Properties/AssemblyInfo.cs b/Tests/Microsoft.AppCenter.Test.Windows/Properties/AssemblyInfo.cs index 479f1f396..695256c52 100644 --- a/Tests/Microsoft.AppCenter.Test.Windows/Properties/AssemblyInfo.cs +++ b/Tests/Microsoft.AppCenter.Test.Windows/Properties/AssemblyInfo.cs @@ -16,5 +16,5 @@ // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] -[assembly: AssemblyInformationalVersion("1.13.2-SNAPSHOT")] +[assembly: AssemblyFileVersion("1.14.0.0")] +[assembly: AssemblyInformationalVersion("1.14.0-SNAPSHOT")] diff --git a/Tests/Microsoft.AppCenter.Test.WindowsDesktop/Properties/AssemblyInfo.cs b/Tests/Microsoft.AppCenter.Test.WindowsDesktop/Properties/AssemblyInfo.cs index d93e1074a..7b0fe3066 100644 --- a/Tests/Microsoft.AppCenter.Test.WindowsDesktop/Properties/AssemblyInfo.cs +++ b/Tests/Microsoft.AppCenter.Test.WindowsDesktop/Properties/AssemblyInfo.cs @@ -17,4 +17,4 @@ // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.13.2.0")] +[assembly: AssemblyFileVersion("1.14.0.0")] diff --git a/Tests/iOS/Info.plist b/Tests/iOS/Info.plist index 90ea5501d..1aa9aa21b 100644 --- a/Tests/iOS/Info.plist +++ b/Tests/iOS/Info.plist @@ -9,9 +9,9 @@ CFBundleIdentifier com.contoso.contoso-forms-test CFBundleShortVersionString - 1.13.2 + 1.14.0 CFBundleVersion - 1.13.2 + 1.14.0 LSRequiresIPhoneOS MinimumOSVersion diff --git a/scripts/configuration/ac-build-config.xml b/scripts/configuration/ac-build-config.xml index 17be77ad0..6fd05a6f7 100644 --- a/scripts/configuration/ac-build-config.xml +++ b/scripts/configuration/ac-build-config.xml @@ -1,7 +1,7 @@ - 1.13.2-SNAPSHOT + 1.14.0-SNAPSHOT 1.13.2 1.11.3