Skip to content

Commit

Permalink
Merge pull request #1500 from microsoft/release/4.2.0
Browse files Browse the repository at this point in the history
Start new 4.2.0 version
  • Loading branch information
MatkovIvan authored Mar 18, 2021
2 parents 7d3a51a + ec1816e commit eba48bf
Show file tree
Hide file tree
Showing 122 changed files with 508 additions and 206 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,6 @@ jobs:
- run: |
echo "Run Externals-Android"
.\build.ps1 --target="Externals-Android"
- run: |
echo "Remove Nuget.config"
Remove-Item -Path NuGet.config
- run: |
echo "Build App Center"
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -275,3 +275,6 @@ archives/

# Automatically generated nuspecs
SDK/**/*.nuspec
SDK/**/*.snk
Tests/**/*.snk
*.snk
20 changes: 14 additions & 6 deletions Apps/Contoso.Android.Puppet/ModulePages/AppCenterFragment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ namespace Contoso.Android.Puppet

public class AppCenterFragment : PageFragment
{
const string LogTag = "AppCenterXamarinPuppet";

private static readonly IDictionary<LogLevel, Action<string, string>> LogFunctions = new Dictionary<LogLevel, Action<string, string>> {
{ LogLevel.Verbose, AppCenterLog.Verbose },
{ LogLevel.Debug, AppCenterLog.Debug },
Expand Down Expand Up @@ -146,12 +148,18 @@ private void WriteLog(object sender, EventArgs e)
private void SaveStorageSize(object sender, EventArgs e)
{
var inputText = StorageSizeText.Text;
var size = string.IsNullOrEmpty(inputText) ? 0 : long.Parse(inputText);
AppCenter.SetMaxStorageSizeAsync(size);
var prefs = Context.GetSharedPreferences("AppCenter", FileCreationMode.Private);
var prefEditor = prefs.Edit();
prefEditor.PutLong(Constants.StorageSizeKey, size);
prefEditor.Commit();
if (long.TryParse(inputText, out var result))
{
AppCenter.SetMaxStorageSizeAsync(result);
var prefs = Context.GetSharedPreferences("AppCenter", FileCreationMode.Private);
var prefEditor = prefs.Edit();
prefEditor.PutLong(Constants.StorageSizeKey, result);
prefEditor.Commit();
}
else
{
AppCenterLog.Error(LogTag, "Wrong number value for the max storage size.");
}
}
}
}
2 changes: 1 addition & 1 deletion Apps/Contoso.Android.Puppet/Properties/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.microsoft.appcenter.xamarin.puppet" android:versionCode="93" android:versionName="4.1.0-SNAPSHOT" android:installLocation="auto">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.microsoft.appcenter.xamarin.puppet" android:versionCode="95" android:versionName="4.2.0-SNAPSHOT" android:installLocation="auto">
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="30" />
<application android:label="SXPuppet" android:icon="@drawable/Icon" android:theme="@style/PuppetTheme">
</application>
Expand Down
4 changes: 2 additions & 2 deletions Apps/Contoso.Android.Puppet/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.0.0.0")]
[assembly: AssemblyFileVersion("4.1.0.0")]
[assembly: AssemblyInformationalVersion("4.1.0-SNAPSHOT")]
[assembly: AssemblyFileVersion("4.2.0.0")]
[assembly: AssemblyInformationalVersion("4.2.0-SNAPSHOT")]
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?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>
Expand Down Expand Up @@ -70,14 +70,14 @@
<Reference Include="Mono.Android" />
</ItemGroup>
<ItemGroup Condition=" '$(Configuration)'=='GooglePlay' ">
<PackageReference Include="Microsoft.AppCenter.DistributePlay" Version="4.1.0" />
<PackageReference Include="Microsoft.AppCenter.DistributePlay" Version="4.2.0" />
</ItemGroup>
<ItemGroup Condition=" '$(Configuration)'!='GooglePlay' ">
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="4.1.0" />
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="4.2.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="4.1.0" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="4.1.0" />
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="4.2.0" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="4.2.0" />
<PackageReference Include="Xamarin.Forms" Version="4.8.0.1821" />
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.microsoft.appcenter.xamarin.forms.demo" android:versionName="4.1.0" android:versionCode="88">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.microsoft.appcenter.xamarin.forms.demo" android:versionName="4.2.0" android:versionCode="89">
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="30" />
<application android:label="ACFDemo">
</application>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
// and "{Major}.{Minor}.{Build}.*" will update just the revision.

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("4.1.0.0")]
[assembly: AssemblyInformationalVersion("4.1.0")]
[assembly: AssemblyFileVersion("4.2.0.0")]
[assembly: AssemblyInformationalVersion("4.2.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.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
Expand Down Expand Up @@ -135,9 +135,9 @@
</ProjectReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="4.1.0" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="4.1.0" />
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="4.1.0" />
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="4.2.0" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="4.2.0" />
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="4.2.0" />
<PackageReference Include="Xamarin.Forms" Version="4.8.0.1821" />
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform" Version="6.2.9" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" IgnorableNamespaces="uap mp">
<Identity Name="10805zumoTestUser.AppCenter-Contoso.Forms.Demo.UWP" Publisher="CN=B2D1C358-6AF8-4416-BF73-129CC1F3C152" Version="4.1.0.0" />
<Identity Name="10805zumoTestUser.AppCenter-Contoso.Forms.Demo.UWP" Publisher="CN=B2D1C358-6AF8-4416-BF73-129CC1F3C152" Version="4.2.0.0" />
<mp:PhoneIdentity PhoneProductId="fbe02dcf-2c7d-4740-9c2b-0df5e15916e5" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>AppCenter-Contoso.Forms.Demo.UWP</DisplayName>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.0.0.0")]
[assembly: AssemblyFileVersion("4.1.0.0")]
[assembly: AssemblyFileVersion("4.2.0.0")]
[assembly: ComVisible(false)]
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?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>
Expand Down Expand Up @@ -87,9 +87,9 @@
<Reference Include="Xamarin.iOS" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="4.1.0" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="4.1.0" />
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="4.1.0" />
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="4.2.0" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="4.2.0" />
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="4.2.0" />
<PackageReference Include="Xamarin.Forms" Version="4.8.0.1821" />
</ItemGroup>
<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.iOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<key>CFBundleIdentifier</key>
<string>com.microsoft.appcenter.xamarin.forms.ios.demo</string>
<key>CFBundleVersion</key>
<string>4.1.0</string>
<string>4.2.0</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>MinimumOSVersion</key>
Expand Down Expand Up @@ -39,7 +39,7 @@
<key>CFBundleName</key>
<string>ACFDemo</string>
<key>CFBundleShortVersionString</key>
<string>4.1.0</string>
<string>4.2.0</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@
<TargetFramework>netstandard2.0</TargetFramework>
<Copyright>Microsoft Corp. All rights reserved.</Copyright>
<Company>Microsoft Corporation</Company>
<Version>4.1.0</Version>
<Version>4.2.0</Version>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<FileVersion>4.1.0.0</FileVersion>
<FileVersion>4.2.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="4.1.0" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="4.1.0" />
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="4.1.0" />
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="4.2.0" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="4.2.0" />
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="4.2.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="Xamarin.Forms" Version="4.8.0.1821" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Contoso.UtilClassLibrary\Contoso.UtilClassLibrary.csproj" />
</ItemGroup>
</Project>
</Project>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="94" android:versionName="4.1.0-SNAPSHOT" package="com.microsoft.appcenter.xamarin.forms.puppet">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="96" android:versionName="4.2.0-SNAPSHOT" package="com.microsoft.appcenter.xamarin.forms.puppet">
<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="28" />
<application android:label="ACFPuppet">
</application>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
// and "{Major}.{Minor}.{Build}.*" will update just the revision.

[assembly: AssemblyVersion("0.0.0.0")]
[assembly: AssemblyFileVersion("4.1.0.0")]
[assembly: AssemblyInformationalVersion("4.1.0-SNAPSHOT")]
[assembly: AssemblyFileVersion("4.2.0.0")]
[assembly: AssemblyInformationalVersion("4.2.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.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" IgnorableNamespaces="uap mp">
<Identity Name="10805zumoTestUser.AppCenter-Contoso.Forms.Puppet.U" Publisher="CN=B2D1C358-6AF8-4416-BF73-129CC1F3C152" Version="4.1.0.0" />
<Identity Name="10805zumoTestUser.AppCenter-Contoso.Forms.Puppet.U" Publisher="CN=B2D1C358-6AF8-4416-BF73-129CC1F3C152" Version="4.2.0.0" />
<mp:PhoneIdentity PhoneProductId="55497ed8-b2ac-4485-ba79-e2b65bb720ed" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>AppCenter-Contoso.Forms.Puppet.UWP</DisplayName>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.0.0.0")]
[assembly: AssemblyFileVersion("4.1.0.0")]
[assembly: AssemblyFileVersion("4.2.0.0")]
[assembly: ComVisible(false)]
4 changes: 2 additions & 2 deletions Apps/Contoso.Forms.Puppet/Contoso.Forms.Puppet.iOS/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<key>CFBundleIdentifier</key>
<string>com.microsoft.appcenter.xamarin.forms.ios.puppet</string>
<key>CFBundleShortVersionString</key>
<string>4.1.0</string>
<string>4.2.0</string>
<key>CFBundleVersion</key>
<string>4.1.0</string>
<string>4.2.0</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>MinimumOSVersion</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
<ViewCell>
<StackLayout Orientation="Horizontal" Margin="15,0,15,0">
<Label Text="User Id" HorizontalOptions="FillAndExpand" VerticalOptions="Center" />
<Entry x:Name="UserIdEntry" Margin="0, 4, 0, 4" HorizontalOptions="FillAndExpand" VerticalOptions="Center" HorizontalTextAlignment="End" />
<Entry x:Name="UserIdEntry" Margin="4, 0, 4, 0" HorizontalOptions="FillAndExpand" VerticalOptions="Center" HorizontalTextAlignment="End" />
</StackLayout>
</ViewCell>
<ViewCell>
<StackLayout Orientation="Horizontal" Margin="15,0,15,0">
<Label Text="Storage Max Size" HorizontalOptions="FillAndExpand" VerticalOptions="Center" />
<Entry x:Name="StorageMaxSize" Margin="0, 4, 0, 4" HorizontalOptions="FillAndExpand" VerticalOptions="Center" HorizontalTextAlignment="End" />
<Entry x:Name="StorageMaxSize" Margin="4, 0, 4, 0" HorizontalOptions="FillAndExpand" VerticalOptions="Center" HorizontalTextAlignment="End" />
</StackLayout>
</ViewCell>
<ViewCell>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ namespace Contoso.Forms.Puppet
[Android.Runtime.Preserve(AllMembers = true)]
public partial class AppCenterContentPage : ContentPage
{
const string LogTag = "AppCenterXamarinPuppet";

public AppCenterContentPage()
{
InitializeComponent();
Expand Down Expand Up @@ -74,11 +76,16 @@ async void UpdateEnabled(object sender, ToggledEventArgs e)
private void SaveStorageSize_Clicked(object sender, System.EventArgs e)
{
var inputText = StorageMaxSize.Text;
var size = 0L;
long.TryParse(inputText, out size);
_ = AppCenter.SetMaxStorageSizeAsync(size);
Application.Current.Properties[Constants.StorageMaxSize] = size;
_ = Application.Current.SavePropertiesAsync();
if (long.TryParse(inputText, out var result))
{
_ = AppCenter.SetMaxStorageSizeAsync(result);
Application.Current.Properties[Constants.StorageMaxSize] = result;
_ = Application.Current.SavePropertiesAsync();
}
else
{
AppCenterLog.Error(LogTag, "Wrong number value for the max storage size.");
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
// and "{Major}.{Minor}.{Build}.*" will update just the revision.

[assembly: AssemblyVersion("0.0.0.0")]
[assembly: AssemblyFileVersion("4.1.0.0")]
[assembly: AssemblyInformationalVersion("4.1.0-SNAPSHOT")]
[assembly: AssemblyFileVersion("4.2.0.0")]
[assembly: AssemblyInformationalVersion("4.2.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.
Expand Down
4 changes: 2 additions & 2 deletions Apps/Contoso.UWP.Demo/Contoso.UWP.Demo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@
</Page>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="4.1.0" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="4.1.0" />
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="4.2.0" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="4.2.0" />
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform" Version="6.2.8" />
</ItemGroup>
<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Apps/Contoso.UWP.Demo/Package.appxmanifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" IgnorableNamespaces="uap mp">
<Identity Name="10805zumoTestUser.AppCenter-Contoso.UWP.Demo" Publisher="CN=B2D1C358-6AF8-4416-BF73-129CC1F3C152" Version="4.1.0.0" />
<Identity Name="10805zumoTestUser.AppCenter-Contoso.UWP.Demo" Publisher="CN=B2D1C358-6AF8-4416-BF73-129CC1F3C152" Version="4.2.0.0" />
<mp:PhoneIdentity PhoneProductId="3bda7e44-ab20-4885-b6a0-121b9f9e33d7" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>AppCenter-Contoso.UWP.Demo</DisplayName>
Expand Down
2 changes: 1 addition & 1 deletion Apps/Contoso.UWP.Demo/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.0.0.0")]
[assembly: AssemblyFileVersion("4.1.0.0")]
[assembly: AssemblyFileVersion("4.2.0.0")]
[assembly: ComVisible(false)]
2 changes: 1 addition & 1 deletion Apps/Contoso.UWP.Puppet/Package.appxmanifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" IgnorableNamespaces="uap mp">
<Identity Name="10805zumoTestUser.AppCenter-Contoso.UWP.Puppet" Publisher="CN=B2D1C358-6AF8-4416-BF73-129CC1F3C152" Version="4.1.0.0" />
<Identity Name="10805zumoTestUser.AppCenter-Contoso.UWP.Puppet" Publisher="CN=B2D1C358-6AF8-4416-BF73-129CC1F3C152" Version="4.2.0.0" />
<mp:PhoneIdentity PhoneProductId="ce1e8604-09a9-4ffb-846b-8762beb84188" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>AppCenter-Contoso.UWP.Puppet</DisplayName>
Expand Down
2 changes: 1 addition & 1 deletion Apps/Contoso.UWP.Puppet/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.0.0.0")]
[assembly: AssemblyFileVersion("4.1.0.0")]
[assembly: AssemblyFileVersion("4.2.0.0")]
[assembly: ComVisible(false)]
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework>
<UseWPF>true</UseWPF>
<Version>4.1.0</Version>
<Version>4.2.0</Version>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<FileVersion>4.1.0.0</FileVersion>
<FileVersion>4.2.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="4.1.0" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="4.1.0" />
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="4.2.0" />
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="4.2.0" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.2.0" />
</ItemGroup>
<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions Apps/Contoso.WPF.Demo/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.0.0.0")]
[assembly: AssemblyFileVersion("4.1.0.0")]
[assembly: AssemblyInformationalVersion("4.1.0")]
[assembly: AssemblyFileVersion("4.2.0.0")]
[assembly: AssemblyInformationalVersion("4.2.0")]
4 changes: 2 additions & 2 deletions Apps/Contoso.WPF.Demo/project.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"dependencies": {
"Microsoft.AppCenter.Analytics": "4.1.0",
"Microsoft.AppCenter.Crashes": "4.1.0"
"Microsoft.AppCenter.Analytics": "4.2.0",
"Microsoft.AppCenter.Crashes": "4.2.0"
},
"frameworks": {
"net461": {}
Expand Down
Loading

0 comments on commit eba48bf

Please sign in to comment.