ApplePie is a .NET standard 2.0 library that exposes the Apple Developer Center and iTunes Connect API.
It’s fast, convenient, tested and supports all of the operations you can do via the browser. Integrating your Developer Center workflow into your .NET environment has never been easier!
var client = new AppleDeveloperClient();
// login
var context = await client.LogonWithCredentialsAsync(userName, password);
// create a new application id
var newApplication = await client.AddApplicationAsync(context, new AddApplication {
Passbook = true,
HealthKit = true,
Identifier = "io.golava.applepie_app",
Name = "ApplePie App"
});This project is licensed under the terms of the MIT license. See the LICENSE file.
This project is in no way affiliated with Apple Inc. This project is open source under the MIT license, which means you have full access to the source code and can modify it to fit your own needs. All tools run on your own computer or server, so your credentials or other sensitive information will never leave your own computer. You are responsible for how you use ApplePie.
Special thanks go to the people of fastlane who build a kick-ass set of awesome tools.