AppCenter.DownloadApp.GetAppInfo
1.3.0
dotnet add package AppCenter.DownloadApp.GetAppInfo --version 1.3.0
NuGet\Install-Package AppCenter.DownloadApp.GetAppInfo -Version 1.3.0
<PackageReference Include="AppCenter.DownloadApp.GetAppInfo" Version="1.3.0" />
paket add AppCenter.DownloadApp.GetAppInfo --version 1.3.0
#r "nuget: AppCenter.DownloadApp.GetAppInfo, 1.3.0"
// Install AppCenter.DownloadApp.GetAppInfo as a Cake Addin #addin nuget:?package=AppCenter.DownloadApp.GetAppInfo&version=1.3.0 // Install AppCenter.DownloadApp.GetAppInfo as a Cake Tool #tool nuget:?package=AppCenter.DownloadApp.GetAppInfo&version=1.3.0
AppCenter.DownloadApp.GetAppInfo
A simple and easy library to Download application and Get application information from Microsoft AppCenter.
Prerequisites
A .NetStandard v2.0 / .NetFramework v4.6.2 / .NetFramework v4.7.2 project
Microsoft AppCenter Access
Installing
Right Click on your project in the visual studio solution explorer -> Manage nuget packages -> Search for AppCenterDownloadAppGetAppInfo -> Select AppCenterDownloadAppGetAppInfo By Meganathan from the list -> Select project -> Install.
Gathering dependency information may take a minute or more.
How to Use? It's simple!
Import "AppCenterDownloadAppGetAppInfo".
using AppCenterDownloadAppGetAppInfo;
Create a new instance of AppCenter with the API Token and Owner Name.
AppCenter appCenter = new AppCenter("APIToken", "OwnerName");
APIToken = Login to Appcenter->Account Settings->Use API Tokens->New API Token->Copy.
OwnerName = URL might be https://appcenter.ms/orgs/Microsoft/apps/APIExample and the {owner_name} would be Microsoft.
e.g. AppCenter appCenter = new AppCenter("xxxxxxxxxx", "Microsoft");
Use the created instance to call the available methods.
e.g.
appCenter.DownloadApplication(string AppName, string ReleaseID, string DownloadLocation, bool DeleteExistingApps);
AppName = URL might be https://appcenter.ms/orgs/Microsoft/apps/APIExample and the {AppName} would be APIExample.
ReleaseID = Enter as "Latest" to get the latest version OR Login to Appcenter->Select an app->See all releases->"Release" value under Release history.
e.g. appCenter.DownloadApplication("APIExample", "latest", "c:\\users\\mega\\desktop\\", false);
This will download the application in to the specified location and will return the file path as string.
Available Methods
No much information added here about the methods since all the methods are having description and parameter info which will be displayed while using the methods.
DownloadApplication() (+ 3 overloads)
GetAllDeviceDetails()
GetAllReleasesInformation()
GetApplicationBuildNumber()
GetApplicationBundleID()
GetApplicationDisplayName()
GetApplicationFullVersion()
GetApplicationShortVersion()
GetApplicationSize()
GetApplicationSupportedOS()
GetDeviceDetails()
GetiOSProvisioningProfileInformation()
GetLatestReleaseID()
GetMinimumOSVersionSupportedByApplication()
GetRecentReleasesInformation()
GetReleaseID() (+ 2 overloads)
GetReleaseIDByContains()
GetReleaseIDByNotContains()
More methods will be added in the future releases.
Built With
- AppCenter APIs - The Official Raw Rest APIs
- Restsharp - API Management
- Newtonsoft.Json - Json Management
Authors
License
This project is licensed under the MIT License
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 is compatible. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6.2
- Microsoft.CSharp (>= 4.7.0)
- Newtonsoft.Json (>= 12.0.3)
- RestSharp (>= 106.11.4)
-
.NETFramework 4.7.2
- Microsoft.CSharp (>= 4.7.0)
- Newtonsoft.Json (>= 12.0.3)
- RestSharp (>= 106.11.4)
-
.NETStandard 2.0
- Microsoft.CSharp (>= 4.7.0)
- Newtonsoft.Json (>= 12.0.3)
- RestSharp (>= 106.11.4)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Returning latest Release ID