Skip to content

Commit 49e5fac

Browse files
Merge pull request #1741 from microsoft/release/5.0.2
Start 5.0.2 version
2 parents 86cf6e7 + 744b998 commit 49e5fac

File tree

89 files changed

+239
-323
lines changed

Some content is hidden

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

89 files changed

+239
-323
lines changed

.github/workflows/codeql.yml

Lines changed: 37 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -15,48 +15,37 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717

18-
runs-on: macos-latest
18+
runs-on: macOS-12
1919

2020
steps:
2121
- name: Checkout repository
2222
uses: actions/checkout@v2
2323
with:
24-
# We must fetch at least the immediate parents so that if this is
25-
# a pull request then we can checkout the head.
2624
fetch-depth: 2
27-
28-
# If this run was triggered by a pull request event, then checkout
29-
# the head of the pull request instead of the merge commit.
30-
- run: git checkout HEAD^2
31-
if: ${{ github.event_name == 'pull_request' }}
32-
3325
# Initializes the CodeQL tools for scanning.
3426
- name: Initialize CodeQL
35-
uses: github/codeql-action/init@v1
36-
# Override language selection by uncommenting this and choosing your languages
27+
uses: github/codeql-action/init@v2
3728
with:
3829
languages: csharp
3930

4031
# ℹ️ Command-line programs to run using the OS shell.
4132
# 📚 https://git.io/JvXDl
42-
43-
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
44-
# and modify them (or add more) to build your code if your project
45-
# uses a compiled language
46-
47-
steps:
48-
- name: Run the Cake script
49-
uses: cake-build/cake-action@v1
50-
with:
51-
target: Externals-Apple
33+
- name: Install workloads
34+
run: dotnet workload install android ios macos -v diagnostic
35+
- name: Run the Cake script
36+
uses: cake-build/cake-action@v1
37+
env:
38+
STORAGE_AUTH_PARAMS: ${{ secrets.STORAGE_AUTH_PARAMS }}
39+
with:
40+
target: Externals-Apple
41+
cake-version: 2.2.0
5242

5343
- run: |
5444
echo "Build App Center For iOS"
55-
msbuild SDK/AppCenter/Microsoft.AppCenter.iOS/Microsoft.AppCenter.iOS.csproj /p:Configuration=Release /restore /t:Build
56-
msbuild SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.iOS/Microsoft.AppCenter.Analytics.iOS.csproj /p:UseSharedCompilation=false /restore /t:Build
57-
msbuild SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.iOS/Microsoft.AppCenter.Crashes.iOS.csproj /p:UseSharedCompilation=false /restore /t:Build
58-
msbuild SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.iOS/Microsoft.AppCenter.Distribute.iOS.csproj /p:UseSharedCompilation=false /restore /t:Build
59-
45+
dotnet msbuild SDK/AppCenter/Microsoft.AppCenter.Apple/Microsoft.AppCenter.Apple.csproj /p:Configuration=Release /restore /t:Build
46+
dotnet msbuild SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Apple/Microsoft.AppCenter.Analytics.Apple.csproj /p:UseSharedCompilation=false /restore /t:Build
47+
dotnet msbuild SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Apple/Microsoft.AppCenter.Crashes.Apple.csproj /p:UseSharedCompilation=false /restore /t:Build
48+
dotnet msbuild SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Apple/Microsoft.AppCenter.Distribute.Apple.csproj /p:UseSharedCompilation=false /restore /t:Build
6049
- name: Perform CodeQL Analysis
6150
uses: github/codeql-action/analyze@v1
6251

@@ -66,55 +55,48 @@ jobs:
6655
fail-fast: false
6756

6857
runs-on: windows-2019
58+
env:
59+
STORAGE_AUTH_PARAMS: ${{ secrets.STORAGE_AUTH_PARAMS }}
6960

7061
steps:
7162
- name: Checkout repository
7263
uses: actions/checkout@v2
7364
with:
74-
# We must fetch at least the immediate parents so that if this is
75-
# a pull request then we can checkout the head.
7665
fetch-depth: 2
7766

78-
# If this run was triggered by a pull request event, then checkout
79-
# the head of the pull request instead of the merge commit.
80-
- run: git checkout HEAD^2
81-
if: ${{ github.event_name == 'pull_request' }}
82-
8367
# Initializes the CodeQL tools for scanning.
8468
- name: Initialize CodeQL
85-
uses: github/codeql-action/init@v1
86-
87-
# Override language selection by uncommenting this and choosing your languages
69+
uses: github/codeql-action/init@v2
8870
with:
8971
languages: csharp
90-
91-
# ℹ️ Command-line programs to run using the OS shell.
92-
# 📚 https://git.io/JvXDl
93-
94-
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
95-
# and modify them (or add more) to build your code if your project
96-
# uses a compiled language
97-
72+
73+
- name: Setup Java
74+
uses: actions/setup-java@v3
75+
with:
76+
distribution: 'microsoft'
77+
java-version: '11'
78+
79+
- name: Install workloads
80+
run: dotnet workload install android
81+
9882
- run: |
9983
echo "Run Externals-Android"
10084
.\build.ps1 --target="Externals-Android"
10185
10286
- run: |
10387
echo "Build App Center"
10488
$Env:Path += ";C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin"
105-
MSBuild.exe AppCenter-SDK-Build-Windows.sln -property:UseSharedCompilation=false -property:Configuration=Release /restore -target:Build
106-
MSBuild.exe SDK/AppCenter/Microsoft.AppCenter/Microsoft.AppCenter.csproj -property:UseSharedCompilation=false -property:Configuration=Release /restore -target:Build
107-
MSBuild.exe SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics/Microsoft.AppCenter.Analytics.csproj -property:UseSharedCompilation=false -property:Configuration=Release /restore -target:Build
108-
MSBuild.exe SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes/Microsoft.AppCenter.Crashes.csproj -property:UseSharedCompilation=false -property:Configuration=Release /restore -target:Build
109-
MSBuild.exe SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute/Microsoft.AppCenter.Distribute.csproj -property:UseSharedCompilation=false -property:Configuration=Release /restore -target:Build
110-
89+
dotnet msbuild AppCenter-SDK-Build-Windows.sln -property:UseSharedCompilation=false -property:Configuration=Release /restore -target:Build
90+
dotnet msbuild SDK/AppCenter/Microsoft.AppCenter/Microsoft.AppCenter.csproj -property:UseSharedCompilation=false -property:Configuration=Release /restore -target:Build
91+
dotnet msbuild SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics/Microsoft.AppCenter.Analytics.csproj -property:UseSharedCompilation=false -property:Configuration=Release /restore -target:Build
92+
dotnet msbuild SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes/Microsoft.AppCenter.Crashes.csproj -property:UseSharedCompilation=false -property:Configuration=Release /restore -target:Build
93+
dotnet msbuild SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute/Microsoft.AppCenter.Distribute.csproj -property:UseSharedCompilation=false -property:Configuration=Release /restore -target:Build
11194
- run: |
11295
echo "Build App Center For Android"
11396
$Env:Path += ";C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin"
114-
MSBuild.exe SDK/AppCenter/Microsoft.AppCenter.Android/Microsoft.AppCenter.Android.csproj -property:Configuration=Release /restore -target:Build
115-
MSBuild.exe SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Android/Microsoft.AppCenter.Analytics.Android.csproj -property:UseSharedCompilation=false -property:Configuration=Release /restore -target:Build
116-
MSBuild.exe SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Android/Microsoft.AppCenter.Crashes.Android.csproj -property:UseSharedCompilation=false -property:Configuration=Release /restore -target:Build
117-
MSBuild.exe SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Android/Microsoft.AppCenter.Distribute.Android.csproj -property:UseSharedCompilation=false -property:Configuration=Release /restore -target:Build
118-
97+
dotnet msbuild SDK/AppCenter/Microsoft.AppCenter.Android/Microsoft.AppCenter.Android.csproj -property:Configuration=Release /restore -target:Build
98+
dotnet msbuild SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Android/Microsoft.AppCenter.Analytics.Android.csproj -property:UseSharedCompilation=false -property:Configuration=Release /restore -target:Build
99+
dotnet msbuild SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Android/Microsoft.AppCenter.Crashes.Android.csproj -property:UseSharedCompilation=false -property:Configuration=Release /restore -target:Build
100+
dotnet msbuild SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Android/Microsoft.AppCenter.Distribute.Android.csproj -property:UseSharedCompilation=false -property:Configuration=Release /restore -target:Build
119101
- name: Perform CodeQL Analysis
120102
uses: github/codeql-action/analyze@v1
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.microsoft.appcenter.xamarin.puppet" android:versionCode="111" android:versionName="5.0.1-SNAPSHOT" android:installLocation="auto">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.microsoft.appcenter.xamarin.puppet" android:versionCode="112" android:versionName="5.0.2-SNAPSHOT" android:installLocation="auto">
33
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="30" />
44
<application android:label="SXPuppet" android:icon="@drawable/Icon" android:theme="@style/PuppetTheme"></application>
55
</manifest>

Apps/Contoso.Android.Puppet/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
// by using the '*' as shown below:
2929
// [assembly: AssemblyVersion("1.0.*")]
3030
[assembly: AssemblyVersion("0.0.0.0")]
31-
[assembly: AssemblyFileVersion("5.0.1.0")]
32-
[assembly: AssemblyInformationalVersion("5.0.1-SNAPSHOT")]
31+
[assembly: AssemblyFileVersion("5.0.2.0")]
32+
[assembly: AssemblyInformationalVersion("5.0.2-SNAPSHOT")]

Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.Droid/Contoso.Forms.Demo.Droid.csproj

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -63,25 +63,22 @@
6363
<EmbedAssembliesIntoApk>true</EmbedAssembliesIntoApk>
6464
<AndroidSupportedAbis>armeabi-v7a;x86;arm64-v8a;x86_64</AndroidSupportedAbis>
6565
</PropertyGroup>
66-
<PropertyGroup Condition=" '$(RunConfiguration)' == 'Default' ">
67-
<Run>am start -e "XAMARIN_FORMS_ANDROID_PROD" "{XAMARIN_FORMS_ANDROID_PROD}" -e "XAMARIN_FORMS_ANDROID_TARGET_TOKEN_PROD" "{XAMARIN_FORMS_ANDROID_TARGET_TOKEN_PROD}" -n "com.microsoft.appcenter.xamarin.forms.demo/Contoso.Forms.Demo.Droid.MainActivity"</Run>
68-
</PropertyGroup>
6966
<ItemGroup>
7067
<Reference Include="System" />
7168
<Reference Include="System.Xml" />
7269
<Reference Include="System.Core" />
7370
<Reference Include="Mono.Android" />
7471
</ItemGroup>
7572
<ItemGroup Condition=" '$(Configuration)'=='GooglePlay' ">
76-
<PackageReference Include="Microsoft.AppCenter.DistributePlay" Version="5.0.0-r0005-370fc7b" />
73+
<PackageReference Include="Microsoft.AppCenter.DistributePlay" Version="5.0.2" />
7774
</ItemGroup>
7875
<ItemGroup Condition=" '$(Configuration)'!='GooglePlay' ">
79-
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="5.0.0-r0005-370fc7b" />
76+
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="5.0.2" />
8077
</ItemGroup>
8178
<ItemGroup>
82-
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="5.0.0-r0005-370fc7b" />
83-
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="5.0.0-r0005-370fc7b" />
84-
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2401" />
79+
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="5.0.2" />
80+
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="5.0.2" />
81+
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2578" />
8582
</ItemGroup>
8683
<ItemGroup>
8784
<Compile Include="MainActivity.cs" />

Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.Droid/MainActivity.cs

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,16 @@ namespace Contoso.Forms.Demo.Droid
1818
{
1919

2020
[Activity(Label = "ACFDemo", Icon = "@drawable/icon", Theme = "@style/MyTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation, LaunchMode = LaunchMode.SingleTop)]
21-
public class MainActivity : Xamarin.Forms.Platform.Android.FormsAppCompatActivity, IClearCrashClick, IAppConfiguration
21+
public class MainActivity : Xamarin.Forms.Platform.Android.FormsAppCompatActivity, IClearCrashClick
2222
{
2323
public static readonly int FileAttachmentId = 1;
2424

2525
private const string CrashesUserConfirmationStorageKey = "com.microsoft.appcenter.crashes.always.send";
26-
private static string AppCenterSecret;
27-
private static string AppCenterTargetToken;
2826

2927
public TaskCompletionSource<string> FileAttachmentTaskCompletionSource { set; get; }
3028

3129
protected override void OnCreate(Bundle savedInstanceState)
3230
{
33-
AppCenterSecret = Intent.GetStringExtra("XAMARIN_FORMS_ANDROID_PROD");
34-
AppCenterTargetToken = Intent.GetStringExtra("XAMARIN_FORMS_ANDROID_TARGET_TOKEN_PROD");
3531
TabLayoutResource = Resource.Layout.Tabbar;
3632
ToolbarResource = Resource.Layout.Toolbar;
3733

@@ -62,16 +58,6 @@ public void ClearCrashButton()
6258
ISharedPreferences appCenterPreferences = Android.App.Application.Context.GetSharedPreferences("AppCenter", FileCreationMode.Private);
6359
appCenterPreferences.Edit().Remove(CrashesUserConfirmationStorageKey).Apply();
6460
}
65-
66-
public string GetAppSecret()
67-
{
68-
return AppCenterSecret;
69-
}
70-
71-
public string GetTargetToken()
72-
{
73-
return AppCenterTargetToken;
74-
}
7561
}
7662

7763
public class AndroidAnalyticsListener : Java.Lang.Object, IAnalyticsListener
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.microsoft.appcenter.xamarin.forms.demo" android:versionName="5.0.0" android:versionCode="96">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.microsoft.appcenter.xamarin.forms.demo" android:versionName="5.0.2" android:versionCode="97">
33
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="30" />
44
<application android:label="ACFDemo"></application>
55
</manifest>

Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.Droid/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
2323

2424
[assembly: AssemblyVersion("1.0.0.0")]
25-
[assembly: AssemblyFileVersion("5.0.0.0")]
26-
[assembly: AssemblyInformationalVersion("5.0.0")]
25+
[assembly: AssemblyFileVersion("5.0.2.0")]
26+
[assembly: AssemblyInformationalVersion("5.0.2")]
2727

2828
// The following attributes are used to specify the signing key for the assembly,
2929
// if desired. See the Mono documentation for more information about signing.

Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.MacOS/AppConfiguration.cs

Lines changed: 0 additions & 27 deletions
This file was deleted.

Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.MacOS/Contoso.Forms.Demo.MacOS.csproj

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -47,21 +47,16 @@
4747
<LinkMode>SdkOnly</LinkMode>
4848
<HttpClientHandler></HttpClientHandler>
4949
</PropertyGroup>
50-
<PropertyGroup Condition=" '$(RunConfiguration)' == 'Default' ">
51-
<EnvironmentVariables>
52-
<Variable name="XAMARIN_FORMS_MACOS_PROD" value="{XAMARIN_FORMS_MACOS_PROD}" />
53-
</EnvironmentVariables>
54-
</PropertyGroup>
5550
<ItemGroup>
5651
<Reference Include="System" />
5752
<Reference Include="System.Core" />
5853
<Reference Include="Xamarin.Mac" />
5954
</ItemGroup>
6055
<ItemGroup>
61-
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="5.0.0-r0005-370fc7b" />
62-
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="5.0.0-r0005-370fc7b" />
63-
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="5.0.0-r0005-370fc7b" />
64-
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2401" />
56+
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="5.0.2" />
57+
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="5.0.2" />
58+
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="5.0.2" />
59+
<PackageReference Include="Xamarin.Forms" Version="5.0.0.2578" />
6560
</ItemGroup>
6661
<ItemGroup>
6762
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\Contents.json" />
@@ -93,7 +88,6 @@
9388
<DependentUpon>ViewController.cs</DependentUpon>
9489
</Compile>
9590
<Compile Include="FilePicker.cs" />
96-
<Compile Include="AppConfiguration.cs" />
9791
</ItemGroup>
9892
<ItemGroup>
9993
<InterfaceDefinition Include="Main.storyboard" />

Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.MacOS/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
<key>CFBundleIdentifier</key>
88
<string>com.microsoft.appcenter.Contoso-Forms-Demo-MacOS</string>
99
<key>CFBundleShortVersionString</key>
10-
<string>5.0.0</string>
10+
<string>5.0.2</string>
1111
<key>CFBundleVersion</key>
12-
<string>5.0.0</string>
12+
<string>5.0.2</string>
1313
<key>LSMinimumSystemVersion</key>
1414
<string>10.14</string>
1515
<key>CFBundleDevelopmentRegion</key>

Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.UWP/AppConfiguration.cs

Lines changed: 0 additions & 23 deletions
This file was deleted.

Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.UWP/Contoso.Forms.Demo.UWP.csproj

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@
9393
<Compile Include="App.xaml.cs">
9494
<DependentUpon>App.xaml</DependentUpon>
9595
</Compile>
96-
<Compile Include="AppConfiguration.cs" />
9796
<Compile Include="ClearCrashes.cs" />
9897
<Compile Include="EventFilter.cs" />
9998
<Compile Include="EventFilterWrapper.cs" />
@@ -136,9 +135,9 @@
136135
</ProjectReference>
137136
</ItemGroup>
138137
<ItemGroup>
139-
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="5.0.0-r0005-370fc7b" />
140-
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="5.0.0-r0005-370fc7b" />
141-
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="5.0.0-r0005-370fc7b" />
138+
<PackageReference Include="Microsoft.AppCenter.Analytics" Version="5.0.2" />
139+
<PackageReference Include="Microsoft.AppCenter.Crashes" Version="5.0.2" />
140+
<PackageReference Include="Microsoft.AppCenter.Distribute" Version="5.0.2" />
142141
<PackageReference Include="Xamarin.Forms" Version="4.8.0.1821" />
143142
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform" Version="6.2.9" />
144143
</ItemGroup>

Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.UWP/Package.appxmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<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">
3-
<Identity Name="10805zumoTestUser.AppCenter-Contoso.Forms.Demo.UWP" Publisher="CN=B2D1C358-6AF8-4416-BF73-129CC1F3C152" Version="5.0.0.0" />
3+
<Identity Name="10805zumoTestUser.AppCenter-Contoso.Forms.Demo.UWP" Publisher="CN=B2D1C358-6AF8-4416-BF73-129CC1F3C152" Version="5.0.2.0" />
44
<mp:PhoneIdentity PhoneProductId="fbe02dcf-2c7d-4740-9c2b-0df5e15916e5" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
55
<Properties>
66
<DisplayName>AppCenter-Contoso.Forms.Demo.UWP</DisplayName>

Apps/Contoso.Forms.Demo/Contoso.Forms.Demo.UWP/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@
2727
// by using the '*' as shown below:
2828
// [assembly: AssemblyVersion("1.0.*")]
2929
[assembly: AssemblyVersion("0.0.0.0")]
30-
[assembly: AssemblyFileVersion("5.0.0.0")]
30+
[assembly: AssemblyFileVersion("5.0.2.0")]
3131
[assembly: ComVisible(false)]

0 commit comments

Comments
 (0)