├── .gitignore ├── LICENSE ├── LICENSE-CODE ├── README.md ├── azure-pipelines.yml ├── iOSHelloWorld.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── iOSHelloWorld.xcscheme ├── iOSHelloWorld ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist └── ViewController.swift ├── iOSHelloWorldTests ├── Info.plist └── iOSHelloWorldTests.swift └── iOSHelloWorldUITests ├── Info.plist └── iOSHelloWorldUITests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-xcode/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-xcode/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-CODE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-xcode/HEAD/LICENSE-CODE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-xcode/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-xcode/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /iOSHelloWorld.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-xcode/HEAD/iOSHelloWorld.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOSHelloWorld.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-xcode/HEAD/iOSHelloWorld.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOSHelloWorld.xcodeproj/xcshareddata/xcschemes/iOSHelloWorld.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-xcode/HEAD/iOSHelloWorld.xcodeproj/xcshareddata/xcschemes/iOSHelloWorld.xcscheme -------------------------------------------------------------------------------- /iOSHelloWorld/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-xcode/HEAD/iOSHelloWorld/AppDelegate.swift -------------------------------------------------------------------------------- /iOSHelloWorld/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-xcode/HEAD/iOSHelloWorld/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iOSHelloWorld/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-xcode/HEAD/iOSHelloWorld/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /iOSHelloWorld/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-xcode/HEAD/iOSHelloWorld/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /iOSHelloWorld/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-xcode/HEAD/iOSHelloWorld/Info.plist -------------------------------------------------------------------------------- /iOSHelloWorld/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-xcode/HEAD/iOSHelloWorld/ViewController.swift -------------------------------------------------------------------------------- /iOSHelloWorldTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-xcode/HEAD/iOSHelloWorldTests/Info.plist -------------------------------------------------------------------------------- /iOSHelloWorldTests/iOSHelloWorldTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-xcode/HEAD/iOSHelloWorldTests/iOSHelloWorldTests.swift -------------------------------------------------------------------------------- /iOSHelloWorldUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-xcode/HEAD/iOSHelloWorldUITests/Info.plist -------------------------------------------------------------------------------- /iOSHelloWorldUITests/iOSHelloWorldUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-xcode/HEAD/iOSHelloWorldUITests/iOSHelloWorldUITests.swift --------------------------------------------------------------------------------