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
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AppCenter.DownloadApp.GetAppInfo" Version="1.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AppCenter.DownloadApp.GetAppInfo --version 1.3.0
#r "nuget: AppCenter.DownloadApp.GetAppInfo, 1.3.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// 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

Authors

License

This project is licensed under the MIT License

Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.3.0 651 1/12/2023
1.2.0 587 1/2/2023
1.1.0 521 12/20/2022

Returning latest Release ID