Cake.HockeyApp

Cake AddIn that allows you to deploy your app package to HockeyApp.

#addin nuget:?package=Cake.HockeyApp&version=0.10.0

dotnet add package Cake.HockeyApp --version 0.10.0

<PackageReference Include="Cake.HockeyApp" Version="0.10.0" />

Aliases

Contains functionality related to HockeyApp.

It allows you to upload an app package to HockeyApp with just one line of code. In order to use the exposed commands you have to add the following line at top of your build.cake file.

#addin Cake.HockeyApp

Deployment

UpdateVersionHockeyApp(FilePath, FilePath, HockeyAppUploadSettings, string) Update the attributes of an existing version. Version property of HockeyAppUploadSettings
UploadToHockeyApp(FilePath, FilePath, HockeyAppUploadSettings) Uploads the specified package to HockeyApp. Currently it is required to specify the AppId and the Version property of HockeyAppUploadSettings
UploadToHockeyApp(FilePath, FilePath) Uploads the specified package and symbols file to HockeyApp. The version is automatically detected from the package metadata. This only works with *.ipa for iOS, *.app.zip for OS X, or *.apk files for Android.
UploadToHockeyApp(FilePath, HockeyAppUploadSettings) Uploads the specified package to HockeyApp. If you don't upload an apk or ipa, it is required to specify the AppId and the Version property of HockeyAppUploadSettings.
UploadToHockeyApp(FilePath) Uploads the specified package and symbols file to HockeyApp. The version is automatically detected from the package metadata. This only works with *.ipa for iOS, *.app.zip for OS X, or *.apk files for Android.