├── .azurepipelines └── build-release-packages-1es.yml ├── .config └── dotnet-tools.json ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── feature_request.md │ └── problem_report.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── AppCenter-Demo.sln ├── AppCenter-Mac.sln ├── AppCenter-SDK-Build-Mac-DotNet.slnf ├── AppCenter-SDK-Build-Mac-Mono.slnf ├── AppCenter-SDK-Build-Windows.sln ├── AppCenter-SDK-Documentation.sln ├── AppCenter-SDK-Test-Windows.sln ├── AppCenter-SDK-Test.sln ├── AppCenter-Windows.sln ├── Apps ├── Contoso.MAUI.Demo │ ├── AddPropertyContentPage.xaml │ ├── AddPropertyContentPage.xaml.cs │ ├── App.xaml │ ├── App.xaml.cs │ ├── Constants.cs │ ├── Contoso.MAUI.Demo.csproj │ ├── Contoso.MAUI.Demo.sln │ ├── CrashUtils.cs │ ├── EventFilterHolder.cs │ ├── FakeService.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── MauiProgram.cs │ ├── ModulePages │ │ ├── AnalyticsContentPage.xaml │ │ ├── AnalyticsContentPage.xaml.cs │ │ ├── AppCenterContentPage.xaml │ │ ├── AppCenterContentPage.xaml.cs │ │ ├── CrashesContentPage.xaml │ │ ├── CrashesContentPage.xaml.cs │ │ ├── DistributeContentPage.xaml │ │ └── DistributeContentPage.xaml.cs │ ├── Platforms │ │ ├── Android │ │ │ ├── AndroidManifest.xml │ │ │ ├── MainActivity.cs │ │ │ ├── MainApplication.cs │ │ │ └── Resources │ │ │ │ └── values │ │ │ │ └── colors.xml │ │ ├── MacCatalyst │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ └── Program.cs │ │ ├── Tizen │ │ │ ├── Main.cs │ │ │ └── tizen-manifest.xml │ │ ├── Windows │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ └── app.manifest │ │ └── iOS │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ └── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── PropertiesContentPage.xaml │ ├── PropertiesContentPage.xaml.cs │ ├── Property.cs │ ├── Resources │ │ ├── AppIcon │ │ │ ├── appicon.svg │ │ │ └── appiconfg.svg │ │ ├── Fonts │ │ │ ├── OpenSans-Regular.ttf │ │ │ └── OpenSans-Semibold.ttf │ │ ├── Images │ │ │ └── dotnet_bot.svg │ │ ├── Splash │ │ │ └── splash.svg │ │ └── Styles │ │ │ ├── Colors.xaml │ │ │ └── Styles.xaml │ ├── StartTypeUtils.cs │ ├── TrackUpdateUtils.cs │ ├── Views │ │ ├── TextAttachmentView.xaml │ │ └── TextAttachmentView.xaml.cs │ ├── global.json │ └── run.sh ├── Contoso.UWP.Demo │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── Contoso.UWP.Demo.csproj │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.StoreAssociation.xml │ ├── Package.appxmanifest │ └── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml ├── Contoso.UWP.Puppet │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── Contoso.UWP.Puppet.csproj │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.StoreAssociation.xml │ ├── Package.appxmanifest │ └── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml ├── Contoso.UtilClassLibrary │ ├── Contoso.UtilClassLibrary.csproj │ └── CrashUtils.cs ├── Contoso.WPF.Demo.DotNetCore │ ├── App.xaml │ ├── App.xaml.cs │ ├── Contoso.WPF.Demo.DotNetCore.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Property.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ ├── UserConfirmationDialog.xaml │ └── UserConfirmationDialog.xaml.cs ├── Contoso.WPF.Demo │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── Contoso.WPF.Demo.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Property.cs │ ├── UserConfirmationDialog.xaml │ └── UserConfirmationDialog.xaml.cs ├── Contoso.WPF.Puppet.DotNetCore │ ├── App.xaml │ ├── App.xaml.cs │ ├── Contoso.WPF.Puppet.DotNetCore.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Property.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ ├── UserConfirmationDialog.xaml │ └── UserConfirmationDialog.xaml.cs ├── Contoso.WPF.Puppet │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── Contoso.WPF.Puppet.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Property.cs │ ├── UserConfirmationDialog.xaml │ ├── UserConfirmationDialog.xaml.cs │ └── project.json ├── Contoso.WinForms.Demo.DotNetCore │ ├── Contoso.WinForms.Demo.DotNetCore.csproj │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── Program.cs │ ├── Settings.Designer.cs │ └── Settings.settings ├── Contoso.WinForms.Demo │ ├── App.config │ ├── Contoso.WinForms.Demo.csproj │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── Program.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── Contoso.WinForms.Puppet.DotNetCore │ ├── Contoso.WinForms.Puppet.DotNetCore.csproj │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── Program.cs │ ├── Settings.Designer.cs │ └── Settings.settings ├── Contoso.WinForms.Puppet │ ├── App.config │ ├── Contoso.WinForms.Puppet.csproj │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ └── app.manifest │ └── project.json ├── Contoso.WinUI.Desktop.Demo │ ├── Contoso.WinUI.Desktop.Demo (Package) │ │ ├── Contoso.WinUI.Desktop.Demo (Package).wapproj │ │ ├── Images │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ └── Package.appxmanifest │ └── Contoso.WinUI.Desktop.Demo │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Constants.cs │ │ ├── Contoso.WinUI.Desktop.Demo.csproj │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Properties │ │ └── PublishProfiles │ │ │ ├── win10-arm64.pubxml │ │ │ ├── win10-x64.pubxml │ │ │ └── win10-x86.pubxml │ │ ├── Property.cs │ │ └── app.manifest └── Contoso.WinUI.Desktop.Puppet │ ├── Contoso.WinUI.Desktop.Puppet (Package) │ ├── Contoso.WinUI.Desktop.Puppet (Package).wapproj │ ├── Images │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ └── Package.appxmanifest │ └── Contoso.WinUI.Desktop.Puppet │ ├── App.xaml │ ├── App.xaml.cs │ ├── Constants.cs │ ├── Contoso.WinUI.Desktop.Puppet.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ └── PublishProfiles │ │ ├── win10-arm64.pubxml │ │ ├── win10-x64.pubxml │ │ └── win10-x86.pubxml │ ├── Property.cs │ └── app.manifest ├── CHANGELOG.md ├── Documentation ├── .gitignore ├── Content │ ├── VersionHistory │ │ ├── VersionHistory.aml │ │ └── v1.0.0.0.aml │ └── Welcome.aml ├── ContentLayout.content ├── Documentation.shfbproj └── icons │ └── Help.png ├── NuGet.config ├── README.md ├── SDK ├── AppCenter │ ├── Directory.Build.props │ ├── Microsoft.AppCenter.Android │ │ ├── AndroidHttpClientAdapter.cs │ │ ├── AppCenter.cs │ │ ├── AppCenterLog.cs │ │ ├── DependencyConfiguration.cs │ │ ├── Device.cs │ │ ├── Microsoft.AppCenter.Android.Mono.csproj │ │ ├── Microsoft.AppCenter.Android.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Transforms │ │ │ └── Metadata.xml │ ├── Microsoft.AppCenter.Apple │ │ ├── ApiDefinition.cs │ │ ├── AppCenter.cs │ │ ├── AppCenterLog.cs │ │ ├── AppleHttpClientAdapter.cs │ │ ├── DependencyConfiguration.cs │ │ ├── Device.cs │ │ ├── Microsoft.AppCenter.Apple.Mono.csproj │ │ ├── Microsoft.AppCenter.Apple.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── StructsAndEnums.cs │ │ └── global.json │ ├── Microsoft.AppCenter.Shared.Windows │ │ ├── AppCenter.cs │ │ ├── AppCenterLog.cs │ │ ├── AppCenterService.cs │ │ ├── Channel │ │ │ ├── CancellationException.cs │ │ │ ├── Channel.cs │ │ │ ├── ChannelEventArgs.cs │ │ │ ├── ChannelGroup.cs │ │ │ ├── IAppSecretHolder.cs │ │ │ ├── IChannel.cs │ │ │ ├── IChannelGroup.cs │ │ │ ├── IChannelGroupFactory.cs │ │ │ └── IChannelUnit.cs │ │ ├── Device.cs │ │ ├── IAppCenterService.cs │ │ ├── Ingestion │ │ │ ├── Http │ │ │ │ ├── HttpIngestionException.cs │ │ │ │ ├── HttpNetworkAdapter.cs │ │ │ │ ├── IHttpNetworkAdapter.cs │ │ │ │ ├── INetworkStateAdapter.cs │ │ │ │ ├── IngestionDecorator.cs │ │ │ │ ├── IngestionHttp.cs │ │ │ │ ├── NetworkIngestionException.cs │ │ │ │ ├── NetworkStateIngestion.cs │ │ │ │ └── RetryableIngestion.cs │ │ │ ├── IIngestion.cs │ │ │ ├── IServiceCall.cs │ │ │ ├── IngestionException.cs │ │ │ ├── Models │ │ │ │ ├── Device.cs │ │ │ │ ├── Log.cs │ │ │ │ ├── LogContainer.cs │ │ │ │ ├── LogWithProperties.cs │ │ │ │ ├── Serialization │ │ │ │ │ ├── LogJsonConverter.cs │ │ │ │ │ └── LogSerializer.cs │ │ │ │ ├── StartServiceLog.cs │ │ │ │ └── ValidationException.cs │ │ │ └── ServiceCall.cs │ │ ├── Storage │ │ │ ├── IStorage.cs │ │ │ ├── IStorageAdapter.cs │ │ │ ├── Storage.cs │ │ │ ├── StorageAdapter.cs │ │ │ ├── StorageCorruptedException.cs │ │ │ ├── StorageException.cs │ │ │ └── StorageFullException.cs │ │ ├── Utils │ │ │ ├── AbstractDeviceInformationHelper.cs │ │ │ ├── Constants.cs │ │ │ ├── CultureInfoHelper.cs │ │ │ ├── Files │ │ │ │ ├── Directory.cs │ │ │ │ └── File.cs │ │ │ ├── IApplicationLifecycleHelper.cs │ │ │ ├── IApplicationSettings.cs │ │ │ ├── IApplicationSettingsFactory.cs │ │ │ ├── IDeviceInformationHelper.cs │ │ │ ├── PropertyValidator.cs │ │ │ ├── SessionContext.cs │ │ │ ├── Synchronization │ │ │ │ ├── State.cs │ │ │ │ ├── StatefulMutex.cs │ │ │ │ └── StatefulMutexException.cs │ │ │ ├── TimeHelper.cs │ │ │ ├── UnhandledExceptionOccurredEventArgs.cs │ │ │ ├── UserIdContext.cs │ │ │ └── UserIdEventArgs.cs │ │ └── WrapperSdk.cs │ ├── Microsoft.AppCenter.Shared.Xamarin │ │ ├── AppCenterService.cs │ │ ├── DependencyConfiguration.Shared.cs │ │ ├── HttpException.cs │ │ ├── HttpResponse.cs │ │ ├── IAppCenterService.cs │ │ └── IHttpNetworkAdapter.cs │ ├── Microsoft.AppCenter.Shared │ │ ├── AppCenter.Shared.cs │ │ ├── AppCenterException.cs │ │ ├── AppCenterLog.Shared.cs │ │ ├── Device.Shared.cs │ │ ├── LogLevel.cs │ │ ├── NamespaceDoc.cs │ │ └── WrapperSdk.cs │ ├── Microsoft.AppCenter.UWP │ │ ├── AppCenterPart.cs │ │ ├── GlobalSuppressions.cs │ │ ├── Ingestion │ │ │ └── Http │ │ │ │ └── NetworkStateAdapter.cs │ │ ├── Microsoft.AppCenter.UWP.csproj │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Microsoft.AppCenter.UWP.rd.xml │ │ └── Utils │ │ │ ├── ApplicationLifecycleHelper.cs │ │ │ ├── Constants.cs │ │ │ ├── DefaultApplicationSettings.cs │ │ │ ├── DefaultScreenSizeProvider.cs │ │ │ ├── DefaultScreenSizeProviderFactory.cs │ │ │ ├── DeviceInformationHelper.cs │ │ │ ├── IScreenSizeProvider.cs │ │ │ ├── IScreenSizeProviderFactory.cs │ │ │ └── ScreenSizeProviderBase.cs │ ├── Microsoft.AppCenter.WindowsDesktop │ │ ├── AppCenterPart.cs │ │ ├── Ingestion │ │ │ └── Http │ │ │ │ ├── HttpNetworkAdapter.cs │ │ │ │ └── NetworkStateAdapter.cs │ │ ├── ManagmentClassFactory.cs │ │ ├── Microsoft.AppCenter.WindowsDesktop.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Utils │ │ │ ├── ApplicationLifecycleHelper.cs │ │ │ ├── ApplicationLifecycleHelperDesktop.cs │ │ │ ├── ApplicationLifecycleHelperWinUI.cs │ │ │ ├── Constants.cs │ │ │ ├── DefaultApplicationSettings.cs │ │ │ ├── DeviceInformationHelper.cs │ │ │ └── WindowsHelper.cs │ └── Microsoft.AppCenter │ │ ├── AppCenter.cs │ │ ├── AppCenterLog.cs │ │ ├── DependencyConfiguration.cs │ │ ├── Microsoft.AppCenter.csproj │ │ └── Properties │ │ └── AssemblyInfo.cs ├── AppCenterAnalytics │ ├── Directory.Build.props │ ├── Microsoft.AppCenter.Analytics.Android │ │ ├── Analytics.cs │ │ ├── Microsoft.AppCenter.Analytics.Android.Mono.csproj │ │ ├── Microsoft.AppCenter.Analytics.Android.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Transforms │ │ │ └── Metadata.xml │ ├── Microsoft.AppCenter.Analytics.Apple │ │ ├── Analytics.cs │ │ ├── ApiDefinition.cs │ │ ├── Microsoft.AppCenter.Analytics.Apple.Mono.csproj │ │ ├── Microsoft.AppCenter.Analytics.Apple.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── StructsAndEnums.cs │ ├── Microsoft.AppCenter.Analytics.Shared.Windows │ │ ├── Analytics.cs │ │ ├── Channel │ │ │ ├── ISessionTracker.cs │ │ │ ├── ISessionTrackerFactory.cs │ │ │ └── SessionTracker.cs │ │ └── Ingestion │ │ │ └── Models │ │ │ ├── EventLog.cs │ │ │ ├── PageLog.cs │ │ │ └── StartSessionLog.cs │ ├── Microsoft.AppCenter.Analytics.Shared │ │ └── NamespaceDoc.cs │ ├── Microsoft.AppCenter.Analytics.UWP │ │ ├── Microsoft.AppCenter.Analytics.UWP.csproj │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Microsoft.AppCenter.Analytics.UWP.rd.xml │ ├── Microsoft.AppCenter.Analytics.WindowsDesktop │ │ └── Microsoft.AppCenter.Analytics.WindowsDesktop.csproj │ └── Microsoft.AppCenter.Analytics │ │ ├── Analytics.cs │ │ ├── Microsoft.AppCenter.Analytics.csproj │ │ └── Properties │ │ └── AssemblyInfo.cs ├── AppCenterCrashes │ ├── Directory.Build.props │ ├── Microsoft.AppCenter.Crashes.Android │ │ ├── Crashes.cs │ │ ├── ErrorAttachmentLog.cs │ │ ├── ErrorReport.cs │ │ ├── ErrorReportCache.cs │ │ ├── Microsoft.AppCenter.Crashes.Android.Mono.csproj │ │ ├── Microsoft.AppCenter.Crashes.Android.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Transforms │ │ │ └── Metadata.xml │ ├── Microsoft.AppCenter.Crashes.Apple │ │ ├── ApiDefinition.cs │ │ ├── Crashes.cs │ │ ├── CrashesInitializationDelegate.cs │ │ ├── CrashesUtils.cs │ │ ├── ErrorAttachmentLog.cs │ │ ├── ErrorReport.cs │ │ ├── Microsoft.AppCenter.Crashes.Apple.Mono.csproj │ │ ├── Microsoft.AppCenter.Crashes.Apple.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── StructsAndEnums.cs │ ├── Microsoft.AppCenter.Crashes.Shared.Windows │ │ ├── Crashes.cs │ │ ├── ErrorAttachmentLog.cs │ │ ├── ErrorReport.cs │ │ ├── Ingestion │ │ │ └── Models │ │ │ │ ├── AbstractErrorLog.cs │ │ │ │ ├── Binary.cs │ │ │ │ ├── Exception.cs │ │ │ │ ├── HandledErrorLog.cs │ │ │ │ ├── ManagedErrorLog.cs │ │ │ │ └── StackFrame.cs │ │ └── Utils │ │ │ ├── ErrorExceptionAndBinaries.cs │ │ │ ├── ErrorLogHelper.cs │ │ │ └── IProcessInformation.cs │ ├── Microsoft.AppCenter.Crashes.Shared.Xamarin │ │ └── TestCrashException.Serializable.cs │ ├── Microsoft.AppCenter.Crashes.Shared │ │ ├── AndroidErrorDetails.cs │ │ ├── AppleErrorDetails.cs │ │ ├── Crashes.Shared.cs │ │ ├── CrashesDelegates.cs │ │ ├── ErrorAttachmentLog.Shared.cs │ │ ├── ErrorReport.Shared.cs │ │ ├── ErrorReportEventArgs.cs │ │ ├── NamespaceDoc.cs │ │ ├── TestCrashException.cs │ │ └── UserConfirmation.cs │ ├── Microsoft.AppCenter.Crashes.UWP │ │ ├── Microsoft.AppCenter.Crashes.UWP.csproj │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Microsoft.AppCenter.Crashes.UWP.rd.xml │ │ └── Utils │ │ │ ├── ErrorLogHelperPart.cs │ │ │ └── ProcessInformation.cs │ ├── Microsoft.AppCenter.Crashes.WindowsDesktop │ │ ├── Microsoft.AppCenter.Crashes.WindowsDesktop.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── TestCrashException.Serializable.cs │ │ └── Utils │ │ │ ├── ErrorLogHelperPart.cs │ │ │ └── ProcessInformation.cs │ └── Microsoft.AppCenter.Crashes │ │ ├── Crashes.cs │ │ ├── ErrorAttachmentLog.cs │ │ ├── Microsoft.AppCenter.Crashes.csproj │ │ └── Properties │ │ └── AssemblyInfo.cs ├── AppCenterDistribute │ ├── Directory.Build.props │ ├── Microsoft.AppCenter.Distribute.Android │ │ ├── Additions │ │ │ ├── DeepLinkActivity.cs │ │ │ └── DownloadManagerReceiver.cs │ │ ├── Distribute.cs │ │ ├── Microsoft.AppCenter.Distribute.Android.Mono.csproj │ │ ├── Microsoft.AppCenter.Distribute.Android.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Transforms │ │ │ └── Metadata.xml │ ├── Microsoft.AppCenter.Distribute.AndroidPlay │ │ ├── Distribute.cs │ │ ├── Microsoft.AppCenter.Distribute.AndroidPlay.Mono.csproj │ │ ├── Microsoft.AppCenter.Distribute.AndroidPlay.csproj │ │ └── Transforms │ │ │ └── Metadata.xml │ ├── Microsoft.AppCenter.Distribute.Apple │ │ ├── ApiDefinition.cs │ │ ├── Distribute.cs │ │ ├── Microsoft.AppCenter.Distribute.Apple.Mono.csproj │ │ ├── Microsoft.AppCenter.Distribute.Apple.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── StructsAndEnums.cs │ ├── Microsoft.AppCenter.Distribute.Shared │ │ ├── Distribute.Shared.cs │ │ ├── DistributeDelegates.cs │ │ ├── NamespaceDoc.cs │ │ ├── ReleaseDetails.cs │ │ ├── UpdateTrack.cs │ │ └── UserUpdate.cs │ └── Microsoft.AppCenter.Distribute │ │ ├── Distribute.cs │ │ ├── Microsoft.AppCenter.Distribute.csproj │ │ └── Properties │ │ └── AssemblyInfo.cs └── Directory.Build.props ├── SECURITY.md ├── Tests ├── Contoso.Test.Functional.Droid │ ├── Assets │ │ └── xunit.runner.json │ ├── Contoso.Test.Functional.Droid.csproj │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── mipmap-hdpi │ │ │ └── Icon.png │ │ ├── mipmap-mdpi │ │ │ └── Icon.png │ │ ├── mipmap-xhdpi │ │ │ └── Icon.png │ │ ├── mipmap-xxhdpi │ │ │ └── Icon.png │ │ └── mipmap-xxxhdpi │ │ │ └── Icon.png │ └── xunit.runner.json ├── Contoso.Test.Functional.iOS │ ├── AppDelegate.cs │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon1024.png │ │ │ ├── Icon120.png │ │ │ ├── Icon152.png │ │ │ ├── Icon167.png │ │ │ ├── Icon180.png │ │ │ ├── Icon20.png │ │ │ ├── Icon29.png │ │ │ ├── Icon40.png │ │ │ ├── Icon58.png │ │ │ ├── Icon60.png │ │ │ ├── Icon76.png │ │ │ ├── Icon80.png │ │ │ └── Icon87.png │ ├── Contoso.Test.Functional.iOS.csproj │ ├── Entitlements.plist │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── Main.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ └── LaunchScreen.xib │ └── xunit.runner.json ├── Microsoft.AppCenter.Analytics.Test.Windows │ ├── AnalyticsTest.cs │ ├── Ingestion │ │ └── Models │ │ │ ├── EventLogTest.cs │ │ │ ├── PageLogTest.cs │ │ │ └── StartSessionLogTest.cs │ ├── Microsoft.AppCenter.Analytics.Test.Windows.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SessionTrackerFactory.cs │ └── SessionTrackerTest.cs ├── Microsoft.AppCenter.Analytics.Test │ ├── Microsoft.AppCenter.Analytics.Test.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── Microsoft.AppCenter.Crashes.Test.Windows │ ├── CrashesErrorAttachmentTest.cs │ ├── CrashesTest.cs │ ├── ErrorAttachmentLogTest.cs │ ├── HandledErrorTest.cs │ ├── Microsoft.AppCenter.Crashes.Test.Windows.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Utils │ │ └── ErrorLogHelperTest.cs ├── Microsoft.AppCenter.Test.Functional │ ├── Analytics │ │ └── TrackEventTest.cs │ ├── AppCenter │ │ └── AppCenterCoreTest.cs │ ├── Config.cs │ ├── Crashes │ │ └── AppCenterCrashesTest.cs │ ├── Distribute │ │ └── DistributeUpdateTest.cs │ ├── ExpectedData.cs │ ├── HttpNetworkAdapter.cs │ ├── Microsoft.AppCenter.Test.Functional.csproj │ ├── RequestData.cs │ └── Utils.cs ├── Microsoft.AppCenter.Test.UWP │ ├── AppCenterTest.cs │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── Microsoft.AppCenter.Test.UWP.csproj │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── UnitTestApp.rd.xml │ ├── TestAppCenterService.cs │ ├── UWPCrashesTest.cs │ ├── UnitTestApp.xaml │ ├── UnitTestApp.xaml.cs │ └── Utils │ │ ├── ApplicationSettingsTest.cs │ │ ├── DefaultScreenSizeProviderTest.cs │ │ ├── DeviceInformationHelperTest.cs │ │ └── NetworkStateTests.cs ├── Microsoft.AppCenter.Test.Windows │ ├── AppCenterServiceTest.cs │ ├── AppCenterTest.cs │ ├── Channel │ │ ├── ChannelGroupTest.cs │ │ ├── ChannelTest.cs │ │ └── MockChannelGroupFactory.cs │ ├── CodeCoverage.runsettings │ ├── Ingestion │ │ ├── Http │ │ │ ├── HttpIngestionExceptionTest.cs │ │ │ ├── HttpIngestionTest.cs │ │ │ ├── HttpNetworkAdapterTest.cs │ │ │ ├── IngestionHttpTest.cs │ │ │ ├── NetworkStateTest.cs │ │ │ └── RetryableTest.cs │ │ ├── IngestionExceptionTest.cs │ │ ├── Models │ │ │ ├── DeviceTest.cs │ │ │ ├── JsonLogConverterTest.cs │ │ │ ├── LogContainerTest.cs │ │ │ ├── LogTest.cs │ │ │ ├── LogWithPropertiesTest.cs │ │ │ ├── StartServiceLogTest.cs │ │ │ └── TestLog.cs │ │ └── ServiceCallTest.cs │ ├── IngestionExceptions.cs │ ├── Microsoft.AppCenter.Test.Windows.csproj │ ├── MockAppCenterService.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── PropertyValidatorTest.cs │ ├── Storage │ │ ├── FakeStorageTest.cs │ │ ├── MockStorage.cs │ │ ├── StorageAdapterTest.cs │ │ └── StorageTest.cs │ ├── TaskExtension.cs │ ├── TestAppCenterService.cs │ ├── TestLog.cs │ └── Utils │ │ ├── MockApplicationSettingsFactory.cs │ │ ├── StorageTestUtils.cs │ │ ├── UnhandledExceptionEventArgsTest.cs │ │ └── UserIdContextTest.cs ├── Microsoft.AppCenter.Test.WindowsDesktop.NetCore │ ├── Microsoft.AppCenter.Test.WindowsDesktop.NetCore.csproj │ ├── NetworkAdapterWithHttpClientTest.cs │ └── Utils │ │ └── DeviceInformationHelperTest.cs ├── Microsoft.AppCenter.Test.WindowsDesktop.Shared │ ├── AppCenterTest.cs │ ├── Microsoft.AppCenter.Test.WindowsDesktop.Shared.projitems │ ├── Microsoft.AppCenter.Test.WindowsDesktop.Shared.shproj │ └── Utils │ │ ├── ApplicationSettingsTest.cs │ │ └── DeviceInformationHelperTest.cs ├── Microsoft.AppCenter.Test.WindowsDesktop │ ├── Microsoft.AppCenter.Test.WindowsDesktop.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Utils │ │ └── DeviceInformationHelperTest.cs └── Microsoft.AppCenter.Test │ ├── AppCenterPart.cs │ ├── Ingestion │ └── Http │ │ └── NetworkStateAdapter.cs │ ├── Microsoft.AppCenter.Test.csproj │ ├── Properties │ └── AssemblyInfo.cs │ └── Utils │ ├── ApplicationLifecycleHelper.cs │ ├── Constants.cs │ ├── DefaultApplicationSettings.cs │ └── DeviceInformationHelper.cs ├── ThirdPartyNotices.txt ├── appcenter-post-clone.ps1 ├── appcenter-public-key.snk ├── cgmanifest.json ├── license.txt ├── nuget ├── AppCenter.nuspec ├── AppCenterAnalytics.nuspec ├── AppCenterCrashes.nuspec ├── AppCenterDistribute.nuspec ├── AppCenterDistributePlay.nuspec ├── MacAppCenter.nuspec ├── MacAppCenterAnalytics.nuspec ├── MacAppCenterCrashes.nuspec ├── MacAppCenterDistribute.nuspec ├── MacAppCenterDistributePlay.nuspec ├── WindowsAppCenter.nuspec ├── WindowsAppCenterAnalytics.nuspec └── WindowsAppCenterCrashes.nuspec ├── scripts ├── appcenter-login.sh ├── autorest.gen.cmd ├── configuration │ ├── AppCenterModule.cake │ ├── AssemblyGroup.cake │ ├── BuildGroup.cake │ ├── VersionReader.cake │ ├── ac-build-config.xml │ └── config-parser.cake ├── distribute-release.sh ├── generated │ ├── AvalancheIngestion.cs │ ├── AvalancheIngestionExtensions.cs │ ├── IAvalancheIngestion.cs │ ├── IMicrosoft.AppCenter.Ingestion.Models.cs │ ├── IMicrosoft.AppCenter.Ingestion.cs │ ├── Microsoft.AppCenter.Ingestion.Models.cs │ ├── Microsoft.AppCenter.Ingestion.ModelsExtensions.cs │ ├── Microsoft.AppCenter.Ingestion.cs │ ├── Microsoft.AppCenter.IngestionExtensions.cs │ └── Models │ │ ├── AbstractErrorLog.cs │ │ ├── AppleErrorLog.cs │ │ ├── Binary.cs │ │ ├── Device.cs │ │ ├── DistributionStartSessionLog.cs │ │ ├── DoubleTypedProperty.cs │ │ ├── ErrorAttachmentLog.cs │ │ ├── EventLog.cs │ │ ├── Exception.cs │ │ ├── HandledErrorLog.cs │ │ ├── Log.cs │ │ ├── LogContainer.cs │ │ ├── LogWithProperties.cs │ │ ├── LongTypedProperty.cs │ │ ├── ManagedErrorLog.cs │ │ ├── PageLog.cs │ │ ├── StackFrame.cs │ │ ├── StartServiceLog.cs │ │ ├── StartSessionLog.cs │ │ ├── StringTypedProperty.cs │ │ ├── Thread.cs │ │ └── TypedProperty.cs ├── git-auth.sh ├── git-close-milestone.sh ├── git-pull-request.sh ├── run-android-functional-tests.sh ├── run-ios-functional-tests.sh ├── start-new-version.ps1 ├── start-new-version.sh ├── strong-named-sign-delay.cmd ├── strong-named-sign-test.cmd ├── strong-named-sign.cmd ├── update-app-secrets.sh ├── update-demo-version.ps1 ├── update-demo-version.sh └── utility.cake ├── swagger └── ingestion.yaml └── version.cake /.azurepipelines/build-release-packages-1es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/.azurepipelines/build-release-packages-1es.yml -------------------------------------------------------------------------------- /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/problem_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/.github/ISSUE_TEMPLATE/problem_report.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/.gitignore -------------------------------------------------------------------------------- /AppCenter-Demo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/AppCenter-Demo.sln -------------------------------------------------------------------------------- /AppCenter-Mac.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/AppCenter-Mac.sln -------------------------------------------------------------------------------- /AppCenter-SDK-Build-Mac-DotNet.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/AppCenter-SDK-Build-Mac-DotNet.slnf -------------------------------------------------------------------------------- /AppCenter-SDK-Build-Mac-Mono.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/AppCenter-SDK-Build-Mac-Mono.slnf -------------------------------------------------------------------------------- /AppCenter-SDK-Build-Windows.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/AppCenter-SDK-Build-Windows.sln -------------------------------------------------------------------------------- /AppCenter-SDK-Documentation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/AppCenter-SDK-Documentation.sln -------------------------------------------------------------------------------- /AppCenter-SDK-Test-Windows.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/AppCenter-SDK-Test-Windows.sln -------------------------------------------------------------------------------- /AppCenter-SDK-Test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/AppCenter-SDK-Test.sln -------------------------------------------------------------------------------- /AppCenter-Windows.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/AppCenter-Windows.sln -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/AddPropertyContentPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/AddPropertyContentPage.xaml -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/AddPropertyContentPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/AddPropertyContentPage.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/App.xaml -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/App.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Constants.cs -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Contoso.MAUI.Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Contoso.MAUI.Demo.csproj -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Contoso.MAUI.Demo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Contoso.MAUI.Demo.sln -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/CrashUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/CrashUtils.cs -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/EventFilterHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/EventFilterHolder.cs -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/FakeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/FakeService.cs -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/MainPage.xaml -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/MainPage.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/MauiProgram.cs -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/ModulePages/AnalyticsContentPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/ModulePages/AnalyticsContentPage.xaml -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/ModulePages/AnalyticsContentPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/ModulePages/AnalyticsContentPage.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/ModulePages/AppCenterContentPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/ModulePages/AppCenterContentPage.xaml -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/ModulePages/AppCenterContentPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/ModulePages/AppCenterContentPage.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/ModulePages/CrashesContentPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/ModulePages/CrashesContentPage.xaml -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/ModulePages/CrashesContentPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/ModulePages/CrashesContentPage.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/ModulePages/DistributeContentPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/ModulePages/DistributeContentPage.xaml -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/ModulePages/DistributeContentPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/ModulePages/DistributeContentPage.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Properties/launchSettings.json -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/PropertiesContentPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/PropertiesContentPage.xaml -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/PropertiesContentPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/PropertiesContentPage.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Property.cs -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Resources/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Resources/Styles/Colors.xaml -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Resources/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Resources/Styles/Styles.xaml -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/StartTypeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/StartTypeUtils.cs -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/TrackUpdateUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/TrackUpdateUtils.cs -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Views/TextAttachmentView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Views/TextAttachmentView.xaml -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/Views/TextAttachmentView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/Views/TextAttachmentView.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/global.json -------------------------------------------------------------------------------- /Apps/Contoso.MAUI.Demo/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.MAUI.Demo/run.sh -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Demo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Demo/App.xaml -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Demo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Demo/App.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Demo/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Demo/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Demo/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Demo/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Demo/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Demo/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Demo/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Demo/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Demo/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Demo/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Demo/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Demo/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Demo/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Demo/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Demo/Contoso.UWP.Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Demo/Contoso.UWP.Demo.csproj -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Demo/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Demo/MainPage.xaml -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Demo/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Demo/MainPage.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Demo/Package.StoreAssociation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Demo/Package.StoreAssociation.xml -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Demo/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Demo/Package.appxmanifest -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Demo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Demo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Demo/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Demo/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Puppet/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Puppet/App.xaml -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Puppet/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Puppet/App.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Puppet/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Puppet/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Puppet/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Puppet/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Puppet/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Puppet/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Puppet/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Puppet/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Puppet/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Puppet/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Puppet/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Puppet/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Puppet/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Puppet/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Puppet/Contoso.UWP.Puppet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Puppet/Contoso.UWP.Puppet.csproj -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Puppet/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Puppet/MainPage.xaml -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Puppet/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Puppet/MainPage.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Puppet/Package.StoreAssociation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Puppet/Package.StoreAssociation.xml -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Puppet/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Puppet/Package.appxmanifest -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Puppet/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Puppet/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Apps/Contoso.UWP.Puppet/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UWP.Puppet/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Apps/Contoso.UtilClassLibrary/Contoso.UtilClassLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UtilClassLibrary/Contoso.UtilClassLibrary.csproj -------------------------------------------------------------------------------- /Apps/Contoso.UtilClassLibrary/CrashUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.UtilClassLibrary/CrashUtils.cs -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Demo.DotNetCore/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Demo.DotNetCore/App.xaml -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Demo.DotNetCore/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Demo.DotNetCore/App.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Demo.DotNetCore/Contoso.WPF.Demo.DotNetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Demo.DotNetCore/Contoso.WPF.Demo.DotNetCore.csproj -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Demo.DotNetCore/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Demo.DotNetCore/MainWindow.xaml -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Demo.DotNetCore/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Demo.DotNetCore/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Demo.DotNetCore/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Demo.DotNetCore/Property.cs -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Demo.DotNetCore/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Demo.DotNetCore/Resources.Designer.cs -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Demo.DotNetCore/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Demo.DotNetCore/Resources.resx -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Demo.DotNetCore/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Demo.DotNetCore/Settings.Designer.cs -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Demo.DotNetCore/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Demo.DotNetCore/Settings.settings -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Demo.DotNetCore/UserConfirmationDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Demo.DotNetCore/UserConfirmationDialog.xaml -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Demo.DotNetCore/UserConfirmationDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Demo.DotNetCore/UserConfirmationDialog.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Demo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Demo/App.config -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Demo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Demo/App.xaml -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Demo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Demo/App.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Demo/Contoso.WPF.Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Demo/Contoso.WPF.Demo.csproj -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Demo/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Demo/MainWindow.xaml -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Demo/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Demo/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Demo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Demo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Demo/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Demo/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Demo/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Demo/Properties/Resources.resx -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Demo/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Demo/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Demo/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Demo/Properties/Settings.settings -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Demo/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Demo/Property.cs -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Demo/UserConfirmationDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Demo/UserConfirmationDialog.xaml -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Demo/UserConfirmationDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Demo/UserConfirmationDialog.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Puppet.DotNetCore/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Puppet.DotNetCore/App.xaml -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Puppet.DotNetCore/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Puppet.DotNetCore/App.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Puppet.DotNetCore/Contoso.WPF.Puppet.DotNetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Puppet.DotNetCore/Contoso.WPF.Puppet.DotNetCore.csproj -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Puppet.DotNetCore/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Puppet.DotNetCore/MainWindow.xaml -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Puppet.DotNetCore/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Puppet.DotNetCore/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Puppet.DotNetCore/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Puppet.DotNetCore/Property.cs -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Puppet.DotNetCore/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Puppet.DotNetCore/Resources.Designer.cs -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Puppet.DotNetCore/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Puppet.DotNetCore/Resources.resx -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Puppet.DotNetCore/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Puppet.DotNetCore/Settings.Designer.cs -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Puppet.DotNetCore/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Puppet.DotNetCore/Settings.settings -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Puppet.DotNetCore/UserConfirmationDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Puppet.DotNetCore/UserConfirmationDialog.xaml -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Puppet.DotNetCore/UserConfirmationDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Puppet.DotNetCore/UserConfirmationDialog.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Puppet/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Puppet/App.config -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Puppet/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Puppet/App.xaml -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Puppet/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Puppet/App.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Puppet/Contoso.WPF.Puppet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Puppet/Contoso.WPF.Puppet.csproj -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Puppet/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Puppet/MainWindow.xaml -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Puppet/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Puppet/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Puppet/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Puppet/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Puppet/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Puppet/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Puppet/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Puppet/Properties/Resources.resx -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Puppet/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Puppet/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Puppet/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Puppet/Properties/Settings.settings -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Puppet/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Puppet/Property.cs -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Puppet/UserConfirmationDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Puppet/UserConfirmationDialog.xaml -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Puppet/UserConfirmationDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Puppet/UserConfirmationDialog.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.WPF.Puppet/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WPF.Puppet/project.json -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Demo.DotNetCore/Contoso.WinForms.Demo.DotNetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Demo.DotNetCore/Contoso.WinForms.Demo.DotNetCore.csproj -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Demo.DotNetCore/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Demo.DotNetCore/MainForm.Designer.cs -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Demo.DotNetCore/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Demo.DotNetCore/MainForm.cs -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Demo.DotNetCore/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Demo.DotNetCore/MainForm.resx -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Demo.DotNetCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Demo.DotNetCore/Program.cs -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Demo.DotNetCore/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Demo.DotNetCore/Settings.Designer.cs -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Demo.DotNetCore/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Demo.DotNetCore/Settings.settings -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Demo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Demo/App.config -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Demo/Contoso.WinForms.Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Demo/Contoso.WinForms.Demo.csproj -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Demo/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Demo/MainForm.Designer.cs -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Demo/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Demo/MainForm.cs -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Demo/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Demo/MainForm.resx -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Demo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Demo/Program.cs -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Demo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Demo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Demo/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Demo/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Demo/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Demo/Properties/Resources.resx -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Demo/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Demo/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Demo/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Demo/Properties/Settings.settings -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Puppet.DotNetCore/Contoso.WinForms.Puppet.DotNetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Puppet.DotNetCore/Contoso.WinForms.Puppet.DotNetCore.csproj -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Puppet.DotNetCore/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Puppet.DotNetCore/MainForm.Designer.cs -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Puppet.DotNetCore/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Puppet.DotNetCore/MainForm.cs -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Puppet.DotNetCore/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Puppet.DotNetCore/MainForm.resx -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Puppet.DotNetCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Puppet.DotNetCore/Program.cs -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Puppet.DotNetCore/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Puppet.DotNetCore/Settings.Designer.cs -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Puppet.DotNetCore/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Puppet.DotNetCore/Settings.settings -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Puppet/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Puppet/App.config -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Puppet/Contoso.WinForms.Puppet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Puppet/Contoso.WinForms.Puppet.csproj -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Puppet/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Puppet/MainForm.Designer.cs -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Puppet/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Puppet/MainForm.cs -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Puppet/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Puppet/MainForm.resx -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Puppet/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Puppet/Program.cs -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Puppet/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Puppet/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Puppet/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Puppet/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Puppet/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Puppet/Properties/Resources.resx -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Puppet/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Puppet/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Puppet/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Puppet/Properties/Settings.settings -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Puppet/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Puppet/Properties/app.manifest -------------------------------------------------------------------------------- /Apps/Contoso.WinForms.Puppet/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinForms.Puppet/project.json -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo (Package)/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo (Package)/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo (Package)/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo (Package)/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo (Package)/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo (Package)/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo (Package)/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo (Package)/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo (Package)/Images/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo (Package)/Images/StoreLogo.png -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo (Package)/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo (Package)/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo (Package)/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo (Package)/Package.appxmanifest -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo/App.xaml -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo/App.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo/Constants.cs -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo.csproj -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo/MainWindow.xaml -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo/Properties/PublishProfiles/win10-arm64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo/Properties/PublishProfiles/win10-arm64.pubxml -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo/Properties/PublishProfiles/win10-x64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo/Properties/PublishProfiles/win10-x64.pubxml -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo/Properties/PublishProfiles/win10-x86.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo/Properties/PublishProfiles/win10-x86.pubxml -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo/Property.cs -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Demo/Contoso.WinUI.Desktop.Demo/app.manifest -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet (Package)/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet (Package)/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet (Package)/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet (Package)/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet (Package)/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet (Package)/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet (Package)/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet (Package)/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet (Package)/Images/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet (Package)/Images/StoreLogo.png -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet (Package)/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet (Package)/Package.appxmanifest -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet/App.xaml -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet/App.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet/Constants.cs -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet.csproj -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet/MainWindow.xaml -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet/Properties/PublishProfiles/win10-arm64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet/Properties/PublishProfiles/win10-arm64.pubxml -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet/Properties/PublishProfiles/win10-x64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet/Properties/PublishProfiles/win10-x64.pubxml -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet/Properties/PublishProfiles/win10-x86.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet/Properties/PublishProfiles/win10-x86.pubxml -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet/Property.cs -------------------------------------------------------------------------------- /Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Apps/Contoso.WinUI.Desktop.Puppet/Contoso.WinUI.Desktop.Puppet/app.manifest -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Documentation/.gitignore: -------------------------------------------------------------------------------- 1 | /Help 2 | -------------------------------------------------------------------------------- /Documentation/Content/VersionHistory/VersionHistory.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Documentation/Content/VersionHistory/VersionHistory.aml -------------------------------------------------------------------------------- /Documentation/Content/VersionHistory/v1.0.0.0.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Documentation/Content/VersionHistory/v1.0.0.0.aml -------------------------------------------------------------------------------- /Documentation/Content/Welcome.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Documentation/Content/Welcome.aml -------------------------------------------------------------------------------- /Documentation/ContentLayout.content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Documentation/ContentLayout.content -------------------------------------------------------------------------------- /Documentation/Documentation.shfbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Documentation/Documentation.shfbproj -------------------------------------------------------------------------------- /Documentation/icons/Help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Documentation/icons/Help.png -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/README.md -------------------------------------------------------------------------------- /SDK/AppCenter/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Directory.Build.props -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Android/AndroidHttpClientAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Android/AndroidHttpClientAdapter.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Android/AppCenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Android/AppCenter.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Android/AppCenterLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Android/AppCenterLog.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Android/DependencyConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Android/DependencyConfiguration.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Android/Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Android/Device.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Android/Microsoft.AppCenter.Android.Mono.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Android/Microsoft.AppCenter.Android.Mono.csproj -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Android/Microsoft.AppCenter.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Android/Microsoft.AppCenter.Android.csproj -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Android/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Android/Transforms/Metadata.xml -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Apple/ApiDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Apple/ApiDefinition.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Apple/AppCenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Apple/AppCenter.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Apple/AppCenterLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Apple/AppCenterLog.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Apple/AppleHttpClientAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Apple/AppleHttpClientAdapter.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Apple/DependencyConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Apple/DependencyConfiguration.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Apple/Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Apple/Device.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Apple/Microsoft.AppCenter.Apple.Mono.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Apple/Microsoft.AppCenter.Apple.Mono.csproj -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Apple/Microsoft.AppCenter.Apple.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Apple/Microsoft.AppCenter.Apple.csproj -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Apple/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Apple/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Apple/StructsAndEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Apple/StructsAndEnums.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Apple/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Apple/global.json -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/AppCenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/AppCenter.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/AppCenterLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/AppCenterLog.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/AppCenterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/AppCenterService.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Channel/CancellationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Channel/CancellationException.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Channel/Channel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Channel/Channel.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Channel/ChannelEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Channel/ChannelEventArgs.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Channel/ChannelGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Channel/ChannelGroup.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Channel/IAppSecretHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Channel/IAppSecretHolder.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Channel/IChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Channel/IChannel.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Channel/IChannelGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Channel/IChannelGroup.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Channel/IChannelGroupFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Channel/IChannelGroupFactory.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Channel/IChannelUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Channel/IChannelUnit.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Device.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/IAppCenterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/IAppCenterService.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Http/HttpIngestionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Http/HttpIngestionException.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Http/HttpNetworkAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Http/HttpNetworkAdapter.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Http/IHttpNetworkAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Http/IHttpNetworkAdapter.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Http/INetworkStateAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Http/INetworkStateAdapter.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Http/IngestionDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Http/IngestionDecorator.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Http/IngestionHttp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Http/IngestionHttp.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Http/NetworkIngestionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Http/NetworkIngestionException.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Http/NetworkStateIngestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Http/NetworkStateIngestion.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Http/RetryableIngestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Http/RetryableIngestion.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/IIngestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/IIngestion.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/IServiceCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/IServiceCall.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/IngestionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/IngestionException.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Models/Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Models/Device.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Models/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Models/Log.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Models/LogContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Models/LogContainer.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Models/LogWithProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Models/LogWithProperties.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Models/Serialization/LogJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Models/Serialization/LogJsonConverter.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Models/Serialization/LogSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Models/Serialization/LogSerializer.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Models/StartServiceLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Models/StartServiceLog.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Models/ValidationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/Models/ValidationException.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/ServiceCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Ingestion/ServiceCall.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Storage/IStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Storage/IStorage.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Storage/IStorageAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Storage/IStorageAdapter.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Storage/Storage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Storage/Storage.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Storage/StorageAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Storage/StorageAdapter.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Storage/StorageCorruptedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Storage/StorageCorruptedException.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Storage/StorageException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Storage/StorageException.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Storage/StorageFullException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Storage/StorageFullException.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/AbstractDeviceInformationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/AbstractDeviceInformationHelper.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/Constants.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/CultureInfoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/CultureInfoHelper.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/Files/Directory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/Files/Directory.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/Files/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/Files/File.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/IApplicationLifecycleHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/IApplicationLifecycleHelper.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/IApplicationSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/IApplicationSettings.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/IApplicationSettingsFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/IApplicationSettingsFactory.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/IDeviceInformationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/IDeviceInformationHelper.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/PropertyValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/PropertyValidator.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/SessionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/SessionContext.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/Synchronization/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/Synchronization/State.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/Synchronization/StatefulMutex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/Synchronization/StatefulMutex.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/Synchronization/StatefulMutexException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/Synchronization/StatefulMutexException.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/TimeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/TimeHelper.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/UnhandledExceptionOccurredEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/UnhandledExceptionOccurredEventArgs.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/UserIdContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/UserIdContext.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/UserIdEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/Utils/UserIdEventArgs.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/WrapperSdk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Windows/WrapperSdk.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Xamarin/AppCenterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Xamarin/AppCenterService.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Xamarin/DependencyConfiguration.Shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Xamarin/DependencyConfiguration.Shared.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Xamarin/HttpException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Xamarin/HttpException.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Xamarin/HttpResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Xamarin/HttpResponse.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Xamarin/IAppCenterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Xamarin/IAppCenterService.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared.Xamarin/IHttpNetworkAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared.Xamarin/IHttpNetworkAdapter.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared/AppCenter.Shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared/AppCenter.Shared.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared/AppCenterException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared/AppCenterException.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared/AppCenterLog.Shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared/AppCenterLog.Shared.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared/Device.Shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared/Device.Shared.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared/LogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared/LogLevel.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared/NamespaceDoc.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.Shared/WrapperSdk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.Shared/WrapperSdk.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.UWP/AppCenterPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.UWP/AppCenterPart.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.UWP/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.UWP/GlobalSuppressions.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.UWP/Ingestion/Http/NetworkStateAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.UWP/Ingestion/Http/NetworkStateAdapter.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.UWP/Microsoft.AppCenter.UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.UWP/Microsoft.AppCenter.UWP.csproj -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.UWP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.UWP/Properties/Microsoft.AppCenter.UWP.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.UWP/Properties/Microsoft.AppCenter.UWP.rd.xml -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.UWP/Utils/ApplicationLifecycleHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.UWP/Utils/ApplicationLifecycleHelper.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.UWP/Utils/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.UWP/Utils/Constants.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.UWP/Utils/DefaultApplicationSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.UWP/Utils/DefaultApplicationSettings.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.UWP/Utils/DefaultScreenSizeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.UWP/Utils/DefaultScreenSizeProvider.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.UWP/Utils/DefaultScreenSizeProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.UWP/Utils/DefaultScreenSizeProviderFactory.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.UWP/Utils/DeviceInformationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.UWP/Utils/DeviceInformationHelper.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.UWP/Utils/IScreenSizeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.UWP/Utils/IScreenSizeProvider.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.UWP/Utils/IScreenSizeProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.UWP/Utils/IScreenSizeProviderFactory.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.UWP/Utils/ScreenSizeProviderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.UWP/Utils/ScreenSizeProviderBase.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/AppCenterPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/AppCenterPart.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/Ingestion/Http/HttpNetworkAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/Ingestion/Http/HttpNetworkAdapter.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/Ingestion/Http/NetworkStateAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/Ingestion/Http/NetworkStateAdapter.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/ManagmentClassFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/ManagmentClassFactory.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/Microsoft.AppCenter.WindowsDesktop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/Microsoft.AppCenter.WindowsDesktop.csproj -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/Utils/ApplicationLifecycleHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/Utils/ApplicationLifecycleHelper.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/Utils/ApplicationLifecycleHelperDesktop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/Utils/ApplicationLifecycleHelperDesktop.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/Utils/ApplicationLifecycleHelperWinUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/Utils/ApplicationLifecycleHelperWinUI.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/Utils/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/Utils/Constants.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/Utils/DefaultApplicationSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/Utils/DefaultApplicationSettings.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/Utils/DeviceInformationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/Utils/DeviceInformationHelper.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/Utils/WindowsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter.WindowsDesktop/Utils/WindowsHelper.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter/AppCenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter/AppCenter.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter/AppCenterLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter/AppCenterLog.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter/DependencyConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter/DependencyConfiguration.cs -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter/Microsoft.AppCenter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter/Microsoft.AppCenter.csproj -------------------------------------------------------------------------------- /SDK/AppCenter/Microsoft.AppCenter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenter/Microsoft.AppCenter/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK/AppCenterAnalytics/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterAnalytics/Directory.Build.props -------------------------------------------------------------------------------- /SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Android/Analytics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Android/Analytics.cs -------------------------------------------------------------------------------- /SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Android/Microsoft.AppCenter.Analytics.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Android/Microsoft.AppCenter.Analytics.Android.csproj -------------------------------------------------------------------------------- /SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Android/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Android/Transforms/Metadata.xml -------------------------------------------------------------------------------- /SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Apple/Analytics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Apple/Analytics.cs -------------------------------------------------------------------------------- /SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Apple/ApiDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Apple/ApiDefinition.cs -------------------------------------------------------------------------------- /SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Apple/Microsoft.AppCenter.Analytics.Apple.Mono.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Apple/Microsoft.AppCenter.Analytics.Apple.Mono.csproj -------------------------------------------------------------------------------- /SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Apple/Microsoft.AppCenter.Analytics.Apple.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Apple/Microsoft.AppCenter.Analytics.Apple.csproj -------------------------------------------------------------------------------- /SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Apple/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Apple/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Apple/StructsAndEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Apple/StructsAndEnums.cs -------------------------------------------------------------------------------- /SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Shared.Windows/Analytics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Shared.Windows/Analytics.cs -------------------------------------------------------------------------------- /SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Shared.Windows/Channel/ISessionTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Shared.Windows/Channel/ISessionTracker.cs -------------------------------------------------------------------------------- /SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Shared.Windows/Channel/ISessionTrackerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Shared.Windows/Channel/ISessionTrackerFactory.cs -------------------------------------------------------------------------------- /SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Shared.Windows/Channel/SessionTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Shared.Windows/Channel/SessionTracker.cs -------------------------------------------------------------------------------- /SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Shared.Windows/Ingestion/Models/EventLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Shared.Windows/Ingestion/Models/EventLog.cs -------------------------------------------------------------------------------- /SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Shared.Windows/Ingestion/Models/PageLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Shared.Windows/Ingestion/Models/PageLog.cs -------------------------------------------------------------------------------- /SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Shared.Windows/Ingestion/Models/StartSessionLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Shared.Windows/Ingestion/Models/StartSessionLog.cs -------------------------------------------------------------------------------- /SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Shared/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.Shared/NamespaceDoc.cs -------------------------------------------------------------------------------- /SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.UWP/Microsoft.AppCenter.Analytics.UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.UWP/Microsoft.AppCenter.Analytics.UWP.csproj -------------------------------------------------------------------------------- /SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.UWP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.UWP/Properties/Microsoft.AppCenter.Analytics.UWP.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics.UWP/Properties/Microsoft.AppCenter.Analytics.UWP.rd.xml -------------------------------------------------------------------------------- /SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics/Analytics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics/Analytics.cs -------------------------------------------------------------------------------- /SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics/Microsoft.AppCenter.Analytics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics/Microsoft.AppCenter.Analytics.csproj -------------------------------------------------------------------------------- /SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterAnalytics/Microsoft.AppCenter.Analytics/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Directory.Build.props -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Android/Crashes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Android/Crashes.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Android/ErrorAttachmentLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Android/ErrorAttachmentLog.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Android/ErrorReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Android/ErrorReport.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Android/ErrorReportCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Android/ErrorReportCache.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Android/Microsoft.AppCenter.Crashes.Android.Mono.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Android/Microsoft.AppCenter.Crashes.Android.Mono.csproj -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Android/Microsoft.AppCenter.Crashes.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Android/Microsoft.AppCenter.Crashes.Android.csproj -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Android/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Android/Transforms/Metadata.xml -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Apple/ApiDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Apple/ApiDefinition.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Apple/Crashes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Apple/Crashes.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Apple/CrashesInitializationDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Apple/CrashesInitializationDelegate.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Apple/CrashesUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Apple/CrashesUtils.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Apple/ErrorAttachmentLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Apple/ErrorAttachmentLog.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Apple/ErrorReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Apple/ErrorReport.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Apple/Microsoft.AppCenter.Crashes.Apple.Mono.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Apple/Microsoft.AppCenter.Crashes.Apple.Mono.csproj -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Apple/Microsoft.AppCenter.Crashes.Apple.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Apple/Microsoft.AppCenter.Crashes.Apple.csproj -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Apple/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Apple/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Apple/StructsAndEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Apple/StructsAndEnums.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared.Windows/Crashes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared.Windows/Crashes.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared.Windows/ErrorAttachmentLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared.Windows/ErrorAttachmentLog.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared.Windows/ErrorReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared.Windows/ErrorReport.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared.Windows/Ingestion/Models/AbstractErrorLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared.Windows/Ingestion/Models/AbstractErrorLog.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared.Windows/Ingestion/Models/Binary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared.Windows/Ingestion/Models/Binary.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared.Windows/Ingestion/Models/Exception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared.Windows/Ingestion/Models/Exception.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared.Windows/Ingestion/Models/HandledErrorLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared.Windows/Ingestion/Models/HandledErrorLog.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared.Windows/Ingestion/Models/ManagedErrorLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared.Windows/Ingestion/Models/ManagedErrorLog.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared.Windows/Ingestion/Models/StackFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared.Windows/Ingestion/Models/StackFrame.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared.Windows/Utils/ErrorExceptionAndBinaries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared.Windows/Utils/ErrorExceptionAndBinaries.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared.Windows/Utils/ErrorLogHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared.Windows/Utils/ErrorLogHelper.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared.Windows/Utils/IProcessInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared.Windows/Utils/IProcessInformation.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared.Xamarin/TestCrashException.Serializable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared.Xamarin/TestCrashException.Serializable.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared/AndroidErrorDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared/AndroidErrorDetails.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared/AppleErrorDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared/AppleErrorDetails.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared/Crashes.Shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared/Crashes.Shared.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared/CrashesDelegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared/CrashesDelegates.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared/ErrorAttachmentLog.Shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared/ErrorAttachmentLog.Shared.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared/ErrorReport.Shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared/ErrorReport.Shared.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared/ErrorReportEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared/ErrorReportEventArgs.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared/NamespaceDoc.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared/TestCrashException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared/TestCrashException.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared/UserConfirmation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.Shared/UserConfirmation.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.UWP/Microsoft.AppCenter.Crashes.UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.UWP/Microsoft.AppCenter.Crashes.UWP.csproj -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.UWP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.UWP/Properties/Microsoft.AppCenter.Crashes.UWP.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.UWP/Properties/Microsoft.AppCenter.Crashes.UWP.rd.xml -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.UWP/Utils/ErrorLogHelperPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.UWP/Utils/ErrorLogHelperPart.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.UWP/Utils/ProcessInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.UWP/Utils/ProcessInformation.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.WindowsDesktop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.WindowsDesktop/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.WindowsDesktop/TestCrashException.Serializable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.WindowsDesktop/TestCrashException.Serializable.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.WindowsDesktop/Utils/ErrorLogHelperPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.WindowsDesktop/Utils/ErrorLogHelperPart.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.WindowsDesktop/Utils/ProcessInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes.WindowsDesktop/Utils/ProcessInformation.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes/Crashes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes/Crashes.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes/ErrorAttachmentLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes/ErrorAttachmentLog.cs -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes/Microsoft.AppCenter.Crashes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes/Microsoft.AppCenter.Crashes.csproj -------------------------------------------------------------------------------- /SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterCrashes/Microsoft.AppCenter.Crashes/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK/AppCenterDistribute/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterDistribute/Directory.Build.props -------------------------------------------------------------------------------- /SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Android/Additions/DeepLinkActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Android/Additions/DeepLinkActivity.cs -------------------------------------------------------------------------------- /SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Android/Additions/DownloadManagerReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Android/Additions/DownloadManagerReceiver.cs -------------------------------------------------------------------------------- /SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Android/Distribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Android/Distribute.cs -------------------------------------------------------------------------------- /SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Android/Microsoft.AppCenter.Distribute.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Android/Microsoft.AppCenter.Distribute.Android.csproj -------------------------------------------------------------------------------- /SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Android/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Android/Transforms/Metadata.xml -------------------------------------------------------------------------------- /SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.AndroidPlay/Distribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.AndroidPlay/Distribute.cs -------------------------------------------------------------------------------- /SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.AndroidPlay/Transforms/Metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.AndroidPlay/Transforms/Metadata.xml -------------------------------------------------------------------------------- /SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Apple/ApiDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Apple/ApiDefinition.cs -------------------------------------------------------------------------------- /SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Apple/Distribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Apple/Distribute.cs -------------------------------------------------------------------------------- /SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Apple/Microsoft.AppCenter.Distribute.Apple.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Apple/Microsoft.AppCenter.Distribute.Apple.csproj -------------------------------------------------------------------------------- /SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Apple/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Apple/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Apple/StructsAndEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Apple/StructsAndEnums.cs -------------------------------------------------------------------------------- /SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Shared/Distribute.Shared.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Shared/Distribute.Shared.cs -------------------------------------------------------------------------------- /SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Shared/DistributeDelegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Shared/DistributeDelegates.cs -------------------------------------------------------------------------------- /SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Shared/NamespaceDoc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Shared/NamespaceDoc.cs -------------------------------------------------------------------------------- /SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Shared/ReleaseDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Shared/ReleaseDetails.cs -------------------------------------------------------------------------------- /SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Shared/UpdateTrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Shared/UpdateTrack.cs -------------------------------------------------------------------------------- /SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Shared/UserUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute.Shared/UserUpdate.cs -------------------------------------------------------------------------------- /SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute/Distribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute/Distribute.cs -------------------------------------------------------------------------------- /SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute/Microsoft.AppCenter.Distribute.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute/Microsoft.AppCenter.Distribute.csproj -------------------------------------------------------------------------------- /SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/AppCenterDistribute/Microsoft.AppCenter.Distribute/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SDK/Directory.Build.props -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.Droid/Assets/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.Droid/Assets/xunit.runner.json -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.Droid/Contoso.Test.Functional.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.Droid/Contoso.Test.Functional.Droid.csproj -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.Droid/MainActivity.cs -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.Droid/Resources/mipmap-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.Droid/Resources/mipmap-hdpi/Icon.png -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.Droid/Resources/mipmap-mdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.Droid/Resources/mipmap-mdpi/Icon.png -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.Droid/Resources/mipmap-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.Droid/Resources/mipmap-xhdpi/Icon.png -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.Droid/Resources/mipmap-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.Droid/Resources/mipmap-xxhdpi/Icon.png -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.Droid/Resources/mipmap-xxxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.Droid/Resources/mipmap-xxxhdpi/Icon.png -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.Droid/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.Droid/xunit.runner.json -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.iOS/Contoso.Test.Functional.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.iOS/Contoso.Test.Functional.iOS.csproj -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.iOS/Info.plist -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.iOS/Main.cs -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.iOS/Resources/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.iOS/Resources/LaunchScreen.xib -------------------------------------------------------------------------------- /Tests/Contoso.Test.Functional.iOS/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Contoso.Test.Functional.iOS/xunit.runner.json -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Analytics.Test.Windows/AnalyticsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Analytics.Test.Windows/AnalyticsTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Analytics.Test.Windows/Ingestion/Models/EventLogTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Analytics.Test.Windows/Ingestion/Models/EventLogTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Analytics.Test.Windows/Ingestion/Models/PageLogTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Analytics.Test.Windows/Ingestion/Models/PageLogTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Analytics.Test.Windows/Ingestion/Models/StartSessionLogTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Analytics.Test.Windows/Ingestion/Models/StartSessionLogTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Analytics.Test.Windows/Microsoft.AppCenter.Analytics.Test.Windows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Analytics.Test.Windows/Microsoft.AppCenter.Analytics.Test.Windows.csproj -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Analytics.Test.Windows/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Analytics.Test.Windows/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Analytics.Test.Windows/SessionTrackerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Analytics.Test.Windows/SessionTrackerFactory.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Analytics.Test.Windows/SessionTrackerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Analytics.Test.Windows/SessionTrackerTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Analytics.Test/Microsoft.AppCenter.Analytics.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Analytics.Test/Microsoft.AppCenter.Analytics.Test.csproj -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Analytics.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Analytics.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Crashes.Test.Windows/CrashesErrorAttachmentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Crashes.Test.Windows/CrashesErrorAttachmentTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Crashes.Test.Windows/CrashesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Crashes.Test.Windows/CrashesTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Crashes.Test.Windows/ErrorAttachmentLogTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Crashes.Test.Windows/ErrorAttachmentLogTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Crashes.Test.Windows/HandledErrorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Crashes.Test.Windows/HandledErrorTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Crashes.Test.Windows/Microsoft.AppCenter.Crashes.Test.Windows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Crashes.Test.Windows/Microsoft.AppCenter.Crashes.Test.Windows.csproj -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Crashes.Test.Windows/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Crashes.Test.Windows/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Crashes.Test.Windows/Utils/ErrorLogHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Crashes.Test.Windows/Utils/ErrorLogHelperTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Functional/Analytics/TrackEventTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Functional/Analytics/TrackEventTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Functional/AppCenter/AppCenterCoreTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Functional/AppCenter/AppCenterCoreTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Functional/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Functional/Config.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Functional/Crashes/AppCenterCrashesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Functional/Crashes/AppCenterCrashesTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Functional/Distribute/DistributeUpdateTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Functional/Distribute/DistributeUpdateTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Functional/ExpectedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Functional/ExpectedData.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Functional/HttpNetworkAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Functional/HttpNetworkAdapter.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Functional/Microsoft.AppCenter.Test.Functional.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Functional/Microsoft.AppCenter.Test.Functional.csproj -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Functional/RequestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Functional/RequestData.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Functional/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Functional/Utils.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.UWP/AppCenterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.UWP/AppCenterTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.UWP/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.UWP/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.UWP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.UWP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.UWP/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.UWP/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.UWP/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.UWP/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.UWP/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.UWP/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.UWP/Microsoft.AppCenter.Test.UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.UWP/Microsoft.AppCenter.Test.UWP.csproj -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.UWP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.UWP/Package.appxmanifest -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.UWP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.UWP/Properties/UnitTestApp.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.UWP/Properties/UnitTestApp.rd.xml -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.UWP/TestAppCenterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.UWP/TestAppCenterService.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.UWP/UWPCrashesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.UWP/UWPCrashesTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.UWP/UnitTestApp.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.UWP/UnitTestApp.xaml -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.UWP/UnitTestApp.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.UWP/UnitTestApp.xaml.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.UWP/Utils/ApplicationSettingsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.UWP/Utils/ApplicationSettingsTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.UWP/Utils/DefaultScreenSizeProviderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.UWP/Utils/DefaultScreenSizeProviderTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.UWP/Utils/DeviceInformationHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.UWP/Utils/DeviceInformationHelperTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.UWP/Utils/NetworkStateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.UWP/Utils/NetworkStateTests.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/AppCenterServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/AppCenterServiceTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/AppCenterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/AppCenterTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/Channel/ChannelGroupTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/Channel/ChannelGroupTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/Channel/ChannelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/Channel/ChannelTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/Channel/MockChannelGroupFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/Channel/MockChannelGroupFactory.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/CodeCoverage.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/CodeCoverage.runsettings -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/Ingestion/Http/HttpIngestionExceptionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/Ingestion/Http/HttpIngestionExceptionTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/Ingestion/Http/HttpIngestionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/Ingestion/Http/HttpIngestionTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/Ingestion/Http/HttpNetworkAdapterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/Ingestion/Http/HttpNetworkAdapterTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/Ingestion/Http/IngestionHttpTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/Ingestion/Http/IngestionHttpTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/Ingestion/Http/NetworkStateTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/Ingestion/Http/NetworkStateTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/Ingestion/Http/RetryableTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/Ingestion/Http/RetryableTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/Ingestion/IngestionExceptionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/Ingestion/IngestionExceptionTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/Ingestion/Models/DeviceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/Ingestion/Models/DeviceTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/Ingestion/Models/JsonLogConverterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/Ingestion/Models/JsonLogConverterTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/Ingestion/Models/LogContainerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/Ingestion/Models/LogContainerTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/Ingestion/Models/LogTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/Ingestion/Models/LogTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/Ingestion/Models/LogWithPropertiesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/Ingestion/Models/LogWithPropertiesTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/Ingestion/Models/StartServiceLogTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/Ingestion/Models/StartServiceLogTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/Ingestion/Models/TestLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/Ingestion/Models/TestLog.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/Ingestion/ServiceCallTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/Ingestion/ServiceCallTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/IngestionExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/IngestionExceptions.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/Microsoft.AppCenter.Test.Windows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/Microsoft.AppCenter.Test.Windows.csproj -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/MockAppCenterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/MockAppCenterService.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/PropertyValidatorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/PropertyValidatorTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/Storage/FakeStorageTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/Storage/FakeStorageTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/Storage/MockStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/Storage/MockStorage.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/Storage/StorageAdapterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/Storage/StorageAdapterTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/Storage/StorageTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/Storage/StorageTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/TaskExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/TaskExtension.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/TestAppCenterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/TestAppCenterService.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/TestLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/TestLog.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/Utils/MockApplicationSettingsFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/Utils/MockApplicationSettingsFactory.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/Utils/StorageTestUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/Utils/StorageTestUtils.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/Utils/UnhandledExceptionEventArgsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/Utils/UnhandledExceptionEventArgsTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.Windows/Utils/UserIdContextTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.Windows/Utils/UserIdContextTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.WindowsDesktop.NetCore/Microsoft.AppCenter.Test.WindowsDesktop.NetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.WindowsDesktop.NetCore/Microsoft.AppCenter.Test.WindowsDesktop.NetCore.csproj -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.WindowsDesktop.NetCore/NetworkAdapterWithHttpClientTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.WindowsDesktop.NetCore/NetworkAdapterWithHttpClientTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.WindowsDesktop.NetCore/Utils/DeviceInformationHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.WindowsDesktop.NetCore/Utils/DeviceInformationHelperTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.WindowsDesktop.Shared/AppCenterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.WindowsDesktop.Shared/AppCenterTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.WindowsDesktop.Shared/Microsoft.AppCenter.Test.WindowsDesktop.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.WindowsDesktop.Shared/Microsoft.AppCenter.Test.WindowsDesktop.Shared.shproj -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.WindowsDesktop.Shared/Utils/ApplicationSettingsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.WindowsDesktop.Shared/Utils/ApplicationSettingsTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.WindowsDesktop.Shared/Utils/DeviceInformationHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.WindowsDesktop.Shared/Utils/DeviceInformationHelperTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.WindowsDesktop/Microsoft.AppCenter.Test.WindowsDesktop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.WindowsDesktop/Microsoft.AppCenter.Test.WindowsDesktop.csproj -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.WindowsDesktop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.WindowsDesktop/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test.WindowsDesktop/Utils/DeviceInformationHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test.WindowsDesktop/Utils/DeviceInformationHelperTest.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test/AppCenterPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test/AppCenterPart.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test/Ingestion/Http/NetworkStateAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test/Ingestion/Http/NetworkStateAdapter.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test/Microsoft.AppCenter.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test/Microsoft.AppCenter.Test.csproj -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test/Utils/ApplicationLifecycleHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test/Utils/ApplicationLifecycleHelper.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test/Utils/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test/Utils/Constants.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test/Utils/DefaultApplicationSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test/Utils/DefaultApplicationSettings.cs -------------------------------------------------------------------------------- /Tests/Microsoft.AppCenter.Test/Utils/DeviceInformationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/Tests/Microsoft.AppCenter.Test/Utils/DeviceInformationHelper.cs -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /appcenter-post-clone.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/appcenter-post-clone.ps1 -------------------------------------------------------------------------------- /appcenter-public-key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/appcenter-public-key.snk -------------------------------------------------------------------------------- /cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/cgmanifest.json -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/license.txt -------------------------------------------------------------------------------- /nuget/AppCenter.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/nuget/AppCenter.nuspec -------------------------------------------------------------------------------- /nuget/AppCenterAnalytics.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/nuget/AppCenterAnalytics.nuspec -------------------------------------------------------------------------------- /nuget/AppCenterCrashes.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/nuget/AppCenterCrashes.nuspec -------------------------------------------------------------------------------- /nuget/AppCenterDistribute.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/nuget/AppCenterDistribute.nuspec -------------------------------------------------------------------------------- /nuget/AppCenterDistributePlay.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/nuget/AppCenterDistributePlay.nuspec -------------------------------------------------------------------------------- /nuget/MacAppCenter.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/nuget/MacAppCenter.nuspec -------------------------------------------------------------------------------- /nuget/MacAppCenterAnalytics.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/nuget/MacAppCenterAnalytics.nuspec -------------------------------------------------------------------------------- /nuget/MacAppCenterCrashes.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/nuget/MacAppCenterCrashes.nuspec -------------------------------------------------------------------------------- /nuget/MacAppCenterDistribute.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/nuget/MacAppCenterDistribute.nuspec -------------------------------------------------------------------------------- /nuget/MacAppCenterDistributePlay.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/nuget/MacAppCenterDistributePlay.nuspec -------------------------------------------------------------------------------- /nuget/WindowsAppCenter.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/nuget/WindowsAppCenter.nuspec -------------------------------------------------------------------------------- /nuget/WindowsAppCenterAnalytics.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/nuget/WindowsAppCenterAnalytics.nuspec -------------------------------------------------------------------------------- /nuget/WindowsAppCenterCrashes.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/nuget/WindowsAppCenterCrashes.nuspec -------------------------------------------------------------------------------- /scripts/appcenter-login.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/appcenter-login.sh -------------------------------------------------------------------------------- /scripts/autorest.gen.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/autorest.gen.cmd -------------------------------------------------------------------------------- /scripts/configuration/AppCenterModule.cake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/configuration/AppCenterModule.cake -------------------------------------------------------------------------------- /scripts/configuration/AssemblyGroup.cake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/configuration/AssemblyGroup.cake -------------------------------------------------------------------------------- /scripts/configuration/BuildGroup.cake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/configuration/BuildGroup.cake -------------------------------------------------------------------------------- /scripts/configuration/VersionReader.cake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/configuration/VersionReader.cake -------------------------------------------------------------------------------- /scripts/configuration/ac-build-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/configuration/ac-build-config.xml -------------------------------------------------------------------------------- /scripts/configuration/config-parser.cake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/configuration/config-parser.cake -------------------------------------------------------------------------------- /scripts/distribute-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/distribute-release.sh -------------------------------------------------------------------------------- /scripts/generated/AvalancheIngestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/AvalancheIngestion.cs -------------------------------------------------------------------------------- /scripts/generated/AvalancheIngestionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/AvalancheIngestionExtensions.cs -------------------------------------------------------------------------------- /scripts/generated/IAvalancheIngestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/IAvalancheIngestion.cs -------------------------------------------------------------------------------- /scripts/generated/IMicrosoft.AppCenter.Ingestion.Models.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/IMicrosoft.AppCenter.Ingestion.Models.cs -------------------------------------------------------------------------------- /scripts/generated/IMicrosoft.AppCenter.Ingestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/IMicrosoft.AppCenter.Ingestion.cs -------------------------------------------------------------------------------- /scripts/generated/Microsoft.AppCenter.Ingestion.Models.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/Microsoft.AppCenter.Ingestion.Models.cs -------------------------------------------------------------------------------- /scripts/generated/Microsoft.AppCenter.Ingestion.ModelsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/Microsoft.AppCenter.Ingestion.ModelsExtensions.cs -------------------------------------------------------------------------------- /scripts/generated/Microsoft.AppCenter.Ingestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/Microsoft.AppCenter.Ingestion.cs -------------------------------------------------------------------------------- /scripts/generated/Microsoft.AppCenter.IngestionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/Microsoft.AppCenter.IngestionExtensions.cs -------------------------------------------------------------------------------- /scripts/generated/Models/AbstractErrorLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/Models/AbstractErrorLog.cs -------------------------------------------------------------------------------- /scripts/generated/Models/AppleErrorLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/Models/AppleErrorLog.cs -------------------------------------------------------------------------------- /scripts/generated/Models/Binary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/Models/Binary.cs -------------------------------------------------------------------------------- /scripts/generated/Models/Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/Models/Device.cs -------------------------------------------------------------------------------- /scripts/generated/Models/DistributionStartSessionLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/Models/DistributionStartSessionLog.cs -------------------------------------------------------------------------------- /scripts/generated/Models/DoubleTypedProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/Models/DoubleTypedProperty.cs -------------------------------------------------------------------------------- /scripts/generated/Models/ErrorAttachmentLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/Models/ErrorAttachmentLog.cs -------------------------------------------------------------------------------- /scripts/generated/Models/EventLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/Models/EventLog.cs -------------------------------------------------------------------------------- /scripts/generated/Models/Exception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/Models/Exception.cs -------------------------------------------------------------------------------- /scripts/generated/Models/HandledErrorLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/Models/HandledErrorLog.cs -------------------------------------------------------------------------------- /scripts/generated/Models/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/Models/Log.cs -------------------------------------------------------------------------------- /scripts/generated/Models/LogContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/Models/LogContainer.cs -------------------------------------------------------------------------------- /scripts/generated/Models/LogWithProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/Models/LogWithProperties.cs -------------------------------------------------------------------------------- /scripts/generated/Models/LongTypedProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/Models/LongTypedProperty.cs -------------------------------------------------------------------------------- /scripts/generated/Models/ManagedErrorLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/Models/ManagedErrorLog.cs -------------------------------------------------------------------------------- /scripts/generated/Models/PageLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/Models/PageLog.cs -------------------------------------------------------------------------------- /scripts/generated/Models/StackFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/Models/StackFrame.cs -------------------------------------------------------------------------------- /scripts/generated/Models/StartServiceLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/Models/StartServiceLog.cs -------------------------------------------------------------------------------- /scripts/generated/Models/StartSessionLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/Models/StartSessionLog.cs -------------------------------------------------------------------------------- /scripts/generated/Models/StringTypedProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/Models/StringTypedProperty.cs -------------------------------------------------------------------------------- /scripts/generated/Models/Thread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/Models/Thread.cs -------------------------------------------------------------------------------- /scripts/generated/Models/TypedProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/generated/Models/TypedProperty.cs -------------------------------------------------------------------------------- /scripts/git-auth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/git-auth.sh -------------------------------------------------------------------------------- /scripts/git-close-milestone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/git-close-milestone.sh -------------------------------------------------------------------------------- /scripts/git-pull-request.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/git-pull-request.sh -------------------------------------------------------------------------------- /scripts/run-android-functional-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/run-android-functional-tests.sh -------------------------------------------------------------------------------- /scripts/run-ios-functional-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/run-ios-functional-tests.sh -------------------------------------------------------------------------------- /scripts/start-new-version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/start-new-version.ps1 -------------------------------------------------------------------------------- /scripts/start-new-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/start-new-version.sh -------------------------------------------------------------------------------- /scripts/strong-named-sign-delay.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/strong-named-sign-delay.cmd -------------------------------------------------------------------------------- /scripts/strong-named-sign-test.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/strong-named-sign-test.cmd -------------------------------------------------------------------------------- /scripts/strong-named-sign.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/strong-named-sign.cmd -------------------------------------------------------------------------------- /scripts/update-app-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/update-app-secrets.sh -------------------------------------------------------------------------------- /scripts/update-demo-version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/update-demo-version.ps1 -------------------------------------------------------------------------------- /scripts/update-demo-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/update-demo-version.sh -------------------------------------------------------------------------------- /scripts/utility.cake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/scripts/utility.cake -------------------------------------------------------------------------------- /swagger/ingestion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/swagger/ingestion.yaml -------------------------------------------------------------------------------- /version.cake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/appcenter-sdk-dotnet/HEAD/version.cake --------------------------------------------------------------------------------