From 33bfc29eac0594497bc32903f893094b0fbe3ada Mon Sep 17 00:00:00 2001 From: Guillaume Perrot Date: Mon, 11 Dec 2017 16:46:37 -0800 Subject: [PATCH] Update demo nugets to 1.1.0 --- .../Properties/AndroidManifest.xml | 2 +- .../Contoso.Forms.Demo.Droid/Properties/AssemblyInfo.cs | 4 ++-- .../Contoso.Forms.Demo.Droid/project.json | 8 ++++---- .../Contoso.Forms.Demo.UWP/Package.appxmanifest | 4 ++-- .../Contoso.Forms.Demo.UWP/Properties/AssemblyInfo.cs | 2 +- .../Contoso.Forms.Demo.UWP/project.json | 8 ++++---- Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.iOS/Info.plist | 4 ++-- .../Contoso.Forms.Demo.iOS/project.json | 8 ++++---- .../Contoso.Forms.Demo/Properties/AssemblyInfo.cs | 4 ++-- Apps/Contoso.Forms.Demo/Contoso.Forms.Demo/project.json | 8 ++++---- Apps/Contoso.WPF.Demo/Properties/AssemblyInfo.cs | 4 ++-- Apps/Contoso.WPF.Demo/project.json | 4 ++-- Apps/Contoso.WinForms.Demo/Properties/AssemblyInfo.cs | 4 ++-- Apps/Contoso.WinForms.Demo/project.json | 4 ++-- 14 files changed, 34 insertions(+), 34 deletions(-) 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 250e78599..878315967 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,5 +1,5 @@ - + diff --git a/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.Droid/Properties/AssemblyInfo.cs b/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.Droid/Properties/AssemblyInfo.cs index 71a71a465..56fe399ae 100644 --- a/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.Droid/Properties/AssemblyInfo.cs +++ b/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.Droid/Properties/AssemblyInfo.cs @@ -20,8 +20,8 @@ using Android.App; // and "{Major}.{Minor}.{Build}.*" will update just the revision. [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.0.1.0")] -[assembly: AssemblyInformationalVersion("1.0.1")] +[assembly: AssemblyFileVersion("1.1.0.0")] +[assembly: AssemblyInformationalVersion("1.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. diff --git a/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.Droid/project.json b/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.Droid/project.json index 6ddd9bfa5..60b57d54d 100644 --- a/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.Droid/project.json +++ b/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.Droid/project.json @@ -1,9 +1,9 @@ { "dependencies": { - "Microsoft.AppCenter.Analytics": "1.0.1", - "Microsoft.AppCenter.Crashes": "1.0.1", - "Microsoft.AppCenter.Distribute": "1.0.1", - "Microsoft.AppCenter.Push": "1.0.1", + "Microsoft.AppCenter.Analytics": "1.1.0", + "Microsoft.AppCenter.Crashes": "1.1.0", + "Microsoft.AppCenter.Distribute": "1.1.0", + "Microsoft.AppCenter.Push": "1.1.0", "Xamarin.Build.Download": "0.4.7", "Xamarin.Forms": "2.5.0.91635" }, diff --git a/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.UWP/Package.appxmanifest b/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.UWP/Package.appxmanifest index e5a32d44d..88ddc0603 100644 --- a/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.UWP/Package.appxmanifest +++ b/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.UWP/Package.appxmanifest @@ -1,6 +1,6 @@ - + - + AppCenter-Contoso.Forms.Demo.UWP diff --git a/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.UWP/Properties/AssemblyInfo.cs b/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.UWP/Properties/AssemblyInfo.cs index 23d5230f4..332be7bcd 100644 --- a/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.UWP/Properties/AssemblyInfo.cs +++ b/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.UWP/Properties/AssemblyInfo.cs @@ -24,5 +24,5 @@ using System.Runtime.InteropServices; // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.0.1.0")] +[assembly: AssemblyFileVersion("1.1.0.0")] [assembly: ComVisible(false)] diff --git a/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.UWP/project.json b/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.UWP/project.json index 920350611..db957f966 100644 --- a/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.UWP/project.json +++ b/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.UWP/project.json @@ -1,9 +1,9 @@ { "dependencies": { - "Microsoft.AppCenter.Analytics": "1.0.1", - "Microsoft.AppCenter.Crashes": "1.0.1", - "Microsoft.AppCenter.Distribute": "1.0.1", - "Microsoft.AppCenter.Push": "1.0.1", + "Microsoft.AppCenter.Analytics": "1.1.0", + "Microsoft.AppCenter.Crashes": "1.1.0", + "Microsoft.AppCenter.Distribute": "1.1.0", + "Microsoft.AppCenter.Push": "1.1.0", "Microsoft.NETCore.UniversalWindowsPlatform": "5.2.2", "Xamarin.Forms": "2.5.0.91635" }, diff --git a/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.iOS/Info.plist b/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.iOS/Info.plist index 3817e6739..6e0397739 100644 --- a/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.iOS/Info.plist +++ b/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.iOS/Info.plist @@ -5,7 +5,7 @@ CFBundleIdentifier com.microsoft.appcenter.xamarin.forms.demo CFBundleVersion - 1.0.1 + 1.1.0 LSRequiresIPhoneOS MinimumOSVersion @@ -39,7 +39,7 @@ CFBundleName ACFDemo CFBundleShortVersionString - 1.0.1 + 1.1.0 CFBundleURLTypes diff --git a/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.iOS/project.json b/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.iOS/project.json index 4e99613d9..0ac6502c6 100644 --- a/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.iOS/project.json +++ b/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.iOS/project.json @@ -1,9 +1,9 @@ { "dependencies": { - "Microsoft.AppCenter.Analytics": "1.0.1", - "Microsoft.AppCenter.Crashes": "1.0.1", - "Microsoft.AppCenter.Distribute": "1.0.1", - "Microsoft.AppCenter.Push": "1.0.1", + "Microsoft.AppCenter.Analytics": "1.1.0", + "Microsoft.AppCenter.Crashes": "1.1.0", + "Microsoft.AppCenter.Distribute": "1.1.0", + "Microsoft.AppCenter.Push": "1.1.0", "Xamarin.Forms": "2.5.0.91635" }, "frameworks": { diff --git a/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo/Properties/AssemblyInfo.cs b/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo/Properties/AssemblyInfo.cs index 3843ba64a..d6604b82d 100644 --- a/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo/Properties/AssemblyInfo.cs +++ b/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo/Properties/AssemblyInfo.cs @@ -17,8 +17,8 @@ using System.Reflection; // and "{Major}.{Minor}.{Build}.*" will update just the revision. [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.0.1.0")] -[assembly: AssemblyInformationalVersion("1.0.1")] +[assembly: AssemblyFileVersion("1.1.0.0")] +[assembly: AssemblyInformationalVersion("1.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. diff --git a/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo/project.json b/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo/project.json index 8d30c3054..f610bf3f7 100644 --- a/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo/project.json +++ b/Apps/Contoso.Forms.Demo/Contoso.Forms.Demo/project.json @@ -1,9 +1,9 @@ { "dependencies": { - "Microsoft.AppCenter.Analytics": "1.0.1", - "Microsoft.AppCenter.Crashes": "1.0.1", - "Microsoft.AppCenter.Distribute": "1.0.1", - "Microsoft.AppCenter.Push": "1.0.1", + "Microsoft.AppCenter.Analytics": "1.1.0", + "Microsoft.AppCenter.Crashes": "1.1.0", + "Microsoft.AppCenter.Distribute": "1.1.0", + "Microsoft.AppCenter.Push": "1.1.0", "NETStandard.Library": "1.6.1", "Xamarin.Forms": "2.5.0.91635" }, diff --git a/Apps/Contoso.WPF.Demo/Properties/AssemblyInfo.cs b/Apps/Contoso.WPF.Demo/Properties/AssemblyInfo.cs index 8a9f492ef..485bb94df 100644 --- a/Apps/Contoso.WPF.Demo/Properties/AssemblyInfo.cs +++ b/Apps/Contoso.WPF.Demo/Properties/AssemblyInfo.cs @@ -27,5 +27,5 @@ using System.Windows; // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.0.1.0")] -[assembly: AssemblyInformationalVersion("1.0.1")] +[assembly: AssemblyFileVersion("1.1.0.0")] +[assembly: AssemblyInformationalVersion("1.1.0")] diff --git a/Apps/Contoso.WPF.Demo/project.json b/Apps/Contoso.WPF.Demo/project.json index 9308f147a..7c0b34f87 100644 --- a/Apps/Contoso.WPF.Demo/project.json +++ b/Apps/Contoso.WPF.Demo/project.json @@ -1,7 +1,7 @@ { "dependencies": { - "Microsoft.AppCenter.Analytics": "1.0.1", - "Microsoft.AppCenter.Crashes": "1.0.1" + "Microsoft.AppCenter.Analytics": "1.1.0", + "Microsoft.AppCenter.Crashes": "1.1.0" }, "frameworks": { "net452": {} diff --git a/Apps/Contoso.WinForms.Demo/Properties/AssemblyInfo.cs b/Apps/Contoso.WinForms.Demo/Properties/AssemblyInfo.cs index 67e4fa749..f92f806f4 100644 --- a/Apps/Contoso.WinForms.Demo/Properties/AssemblyInfo.cs +++ b/Apps/Contoso.WinForms.Demo/Properties/AssemblyInfo.cs @@ -25,5 +25,5 @@ using System.Runtime.InteropServices; // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("0.0.0.0")] -[assembly: AssemblyFileVersion("1.0.1.0")] -[assembly: AssemblyInformationalVersion("1.0.1")] +[assembly: AssemblyFileVersion("1.1.0.0")] +[assembly: AssemblyInformationalVersion("1.1.0")] diff --git a/Apps/Contoso.WinForms.Demo/project.json b/Apps/Contoso.WinForms.Demo/project.json index 9308f147a..7c0b34f87 100644 --- a/Apps/Contoso.WinForms.Demo/project.json +++ b/Apps/Contoso.WinForms.Demo/project.json @@ -1,7 +1,7 @@ { "dependencies": { - "Microsoft.AppCenter.Analytics": "1.0.1", - "Microsoft.AppCenter.Crashes": "1.0.1" + "Microsoft.AppCenter.Analytics": "1.1.0", + "Microsoft.AppCenter.Crashes": "1.1.0" }, "frameworks": { "net452": {}