├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── README.md └── src ├── Common ├── Resources │ └── fonts │ │ └── LiveSymbol │ │ └── LiveSymbol.ttf ├── Source │ ├── Internal │ │ ├── ApiMethod.cs │ │ ├── AuthConstant.cs │ │ ├── AuthEndpointsInfo.cs │ │ ├── AuthErrorCodes.cs │ │ ├── DisplayType.cs │ │ ├── DynamicDictionary.cs │ │ ├── HttpMethods.cs │ │ ├── IAuthClient.cs │ │ ├── IServerResponseReaderObserver.cs │ │ ├── IWebRequestFactory.cs │ │ ├── Operations │ │ │ ├── ApiOperation.cs │ │ │ ├── ApiWriteOperation.cs │ │ │ ├── DownloadOperation.cs │ │ │ ├── GetUploadLinkOperation.cs │ │ │ ├── Operation.cs │ │ │ ├── OperationStatus.cs │ │ │ ├── RefreshTokenOperation.cs │ │ │ ├── StreamCopyOperation.cs │ │ │ ├── UploadOperation.cs │ │ │ └── WebOperation.cs │ │ ├── QueryParameters.cs │ │ ├── ResponseType.cs │ │ ├── Serialization │ │ │ ├── IJsonSerializable.cs │ │ │ ├── IndentedTextWriter.cs │ │ │ ├── JsonReader.cs │ │ │ └── JsonWriter.cs │ │ ├── ServerResponseReader.cs │ │ ├── StringBuilderExtension.cs │ │ ├── Utilities │ │ │ ├── ErrorText.Designer.cs │ │ │ ├── ErrorText.resx │ │ │ ├── LiveAuthRequestUtility.cs │ │ │ ├── LiveAuthUtility.cs │ │ │ └── LiveUtility.cs │ │ └── WebRequestFactory.cs │ └── Public │ │ ├── IRefreshTokenHandler.cs │ │ ├── LiveAuthClient.cs │ │ ├── LiveAuthException.cs │ │ ├── LiveConnectClient.cs │ │ ├── LiveConnectClientTaskAsync.cs │ │ ├── LiveConnectException.cs │ │ ├── LiveConnectSession.cs │ │ ├── LiveConnectSessionStatus.cs │ │ ├── LiveLoginResult.cs │ │ ├── LiveOperationProgress.cs │ │ ├── LiveOperationResult.cs │ │ ├── OverwriteOption.cs │ │ ├── RefreshTokenInfo.cs │ │ └── ThemeType.cs └── UnitTests │ ├── DynamicDictionaryTest.cs │ ├── Helpers │ ├── AuthConstants.cs │ ├── AuthErrorCodes.cs │ └── Helpers.cs │ ├── LiveOperationProgressTest.cs │ ├── Operations │ ├── ApiOperationTest.cs │ ├── ApiWriteOperationTest.cs │ ├── GetUploadLinkOperationTest.cs │ └── RefreshTokenOperationTest.cs │ ├── QueryParametersTest.cs │ ├── Serialization │ ├── IndentedTextWriterTest.cs │ ├── JsonReaderTests.cs │ └── JsonWriterTests.cs │ ├── StringBuilderExtensionTest.cs │ └── Stubs │ ├── FakeService.cs │ ├── MockAsyncResult.cs │ ├── MockNetworkStream.cs │ ├── MockServerResponseReaderObserver.cs │ ├── MockWebRequest.cs │ ├── MockWebResponse.cs │ ├── ResponseJson.cs │ └── TestWebRequestFactory.cs ├── Desktop ├── Microsoft.Live.Desktop.sln ├── Samples │ └── ApiExplorer │ │ ├── AuthResult.cs │ │ ├── JsonHelper.cs │ │ ├── LiveAuthForm.Designer.cs │ │ ├── LiveAuthForm.cs │ │ ├── LiveAuthForm.resx │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── Microsoft.Live.Desktop.Samples.ApiExplorer.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ └── app.config ├── Source │ ├── Internal │ │ ├── LiveAuthClientCore.cs │ │ └── Platform.cs │ ├── Microsoft.Live.Desktop.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Public │ │ └── LiveAuthClient.cs └── UnitTests │ ├── Microsoft.Live.Desktop.UnitTests.csproj │ └── Properties │ └── AssemblyInfo.cs ├── WP8 ├── Controls │ ├── BrandingType.cs │ ├── ButtonTextType.cs │ ├── Design │ │ ├── MetadataBase.cs │ │ ├── Microsoft.Live.WP8.Controls.Design.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── StringResources.Designer.cs │ │ └── StringResources.resx │ ├── Images │ │ ├── Hotmail_black.png │ │ ├── Messenger_black.png │ │ ├── SkyDrive_black.png │ │ └── Windows_black.png │ ├── LiveConnectSessionChangedEventArgs.cs │ ├── Microsoft.Live.WP8.Controls.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ResourceHelper.cs │ ├── Resources │ │ ├── Errors.Designer.cs │ │ ├── Errors.resx │ │ ├── WLText.Designer.cs │ │ ├── WLText.af.resx │ │ ├── WLText.am-et.resx │ │ ├── WLText.ar-ploc-sa.resx │ │ ├── WLText.ar.resx │ │ ├── WLText.as-in.resx │ │ ├── WLText.az-latn-az.resx │ │ ├── WLText.be.resx │ │ ├── WLText.bg.resx │ │ ├── WLText.bn-bd.resx │ │ ├── WLText.bn-in.resx │ │ ├── WLText.bs-cyrl-ba.resx │ │ ├── WLText.bs-latn-ba.resx │ │ ├── WLText.ca-es-valencia.resx │ │ ├── WLText.ca.resx │ │ ├── WLText.cs.resx │ │ ├── WLText.cy-gb.resx │ │ ├── WLText.da.resx │ │ ├── WLText.de-ploc-de.resx │ │ ├── WLText.de.resx │ │ ├── WLText.el.resx │ │ ├── WLText.en-gb.resx │ │ ├── WLText.en-locr-us.resx │ │ ├── WLText.en-us.resx │ │ ├── WLText.en.resx │ │ ├── WLText.es.resx │ │ ├── WLText.et.resx │ │ ├── WLText.eu.resx │ │ ├── WLText.fa.resx │ │ ├── WLText.fi.resx │ │ ├── WLText.fil-ph.resx │ │ ├── WLText.fr.resx │ │ ├── WLText.ga-ie.resx │ │ ├── WLText.gd-latn.resx │ │ ├── WLText.gl.resx │ │ ├── WLText.gu.resx │ │ ├── WLText.ha-latn-ng.resx │ │ ├── WLText.he.resx │ │ ├── WLText.hi.resx │ │ ├── WLText.hr.resx │ │ ├── WLText.hu.resx │ │ ├── WLText.hy.resx │ │ ├── WLText.id.resx │ │ ├── WLText.ig-ng.resx │ │ ├── WLText.is.resx │ │ ├── WLText.it.resx │ │ ├── WLText.iu-latn-ca.resx │ │ ├── WLText.ja-ploc-jp.resx │ │ ├── WLText.ja.resx │ │ ├── WLText.ka.resx │ │ ├── WLText.kk.resx │ │ ├── WLText.km-kh.resx │ │ ├── WLText.kn.resx │ │ ├── WLText.ko.resx │ │ ├── WLText.kok.resx │ │ ├── WLText.ku-arab.resx │ │ ├── WLText.ky.resx │ │ ├── WLText.lb-lu.resx │ │ ├── WLText.lt.resx │ │ ├── WLText.lv.resx │ │ ├── WLText.mi-nz.resx │ │ ├── WLText.mk.resx │ │ ├── WLText.ml-in.resx │ │ ├── WLText.mn.resx │ │ ├── WLText.mr.resx │ │ ├── WLText.ms.resx │ │ ├── WLText.mt-mt.resx │ │ ├── WLText.nb-no.resx │ │ ├── WLText.ne-np.resx │ │ ├── WLText.nl.resx │ │ ├── WLText.nn-no.resx │ │ ├── WLText.no.resx │ │ ├── WLText.nso-za.resx │ │ ├── WLText.or-in.resx │ │ ├── WLText.pa-arab.resx │ │ ├── WLText.pa.resx │ │ ├── WLText.pl.resx │ │ ├── WLText.prs-af.resx │ │ ├── WLText.pt-br.resx │ │ ├── WLText.pt-pt.resx │ │ ├── WLText.qut-latn.resx │ │ ├── WLText.quz-pe.resx │ │ ├── WLText.resx │ │ ├── WLText.ro.resx │ │ ├── WLText.ru.resx │ │ ├── WLText.rw.resx │ │ ├── WLText.sd-arab.resx │ │ ├── WLText.si-lk.resx │ │ ├── WLText.sk.resx │ │ ├── WLText.sl.resx │ │ ├── WLText.sq.resx │ │ ├── WLText.sr-cyrl-ba.resx │ │ ├── WLText.sr-cyrl-cs.resx │ │ ├── WLText.sr-latn-cs.resx │ │ ├── WLText.sv.resx │ │ ├── WLText.sw.resx │ │ ├── WLText.ta.resx │ │ ├── WLText.te.resx │ │ ├── WLText.tg-cyrl.resx │ │ ├── WLText.th.resx │ │ ├── WLText.ti.resx │ │ ├── WLText.tk-tm.resx │ │ ├── WLText.tn-za.resx │ │ ├── WLText.tr.resx │ │ ├── WLText.tt.resx │ │ ├── WLText.ug-arab.resx │ │ ├── WLText.uk.resx │ │ ├── WLText.ur.resx │ │ ├── WLText.uz-latn-uz.resx │ │ ├── WLText.vi.resx │ │ ├── WLText.wo.resx │ │ ├── WLText.xh-za.resx │ │ ├── WLText.yo-ng.resx │ │ ├── WLText.zh-cn.resx │ │ ├── WLText.zh-tw.resx │ │ └── WLText.zu-za.resx │ ├── SignInButton.cs │ ├── SignInButton.xaml │ └── SignInButton.xaml.cs ├── Microsoft.Live.WP8.sln ├── Samples │ ├── APIExplorer │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Microsoft.Live.WP8.Samples.APIExplorer.csproj │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ └── SplashScreenImage.jpg │ ├── BackgroundTransfer │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── DownloadPage.xaml │ │ ├── DownloadPage.xaml.cs │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Microsoft.Live.WP8.Samples.BackgroundTransfer.csproj │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SignInPage.xaml │ │ ├── SignInPage.xaml.cs │ │ ├── SkyDriveItem.cs │ │ ├── UploadPage.xaml │ │ └── UploadPage.xaml.cs │ ├── CoreConcepts │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── BrowseSkyDrive.xaml │ │ ├── BrowseSkyDrive.xaml.cs │ │ ├── Error.xaml │ │ ├── Error.xaml.cs │ │ ├── Index.xaml │ │ ├── Index.xaml.cs │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Microsoft.Live.WP8.Samples.CoreConcepts.csproj │ │ ├── PlayAudio.xaml │ │ ├── PlayAudio.xaml.cs │ │ ├── PlayVideo.xaml │ │ ├── PlayVideo.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SaveFile.xaml │ │ ├── SaveFile.xaml.cs │ │ ├── SkyDriveItemTile.xaml │ │ ├── SkyDriveItemTile.xaml.cs │ │ ├── SplashScreenImage.jpg │ │ ├── Upload.xaml │ │ ├── Upload.xaml.cs │ │ ├── ViewDocument.xaml │ │ ├── ViewDocument.xaml.cs │ │ ├── ViewFile.xaml │ │ └── ViewFile.xaml.cs │ ├── LiveLogin │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Microsoft.Live.WP8.Samples.LiveLogin.csproj │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ └── SplashScreenImage.jpg │ └── StreamUploadDownload │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ ├── AlignmentGrid.png │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Microsoft.Live.WP8.Samples.StreamUploadDownload.csproj │ │ ├── Properties │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ └── WMAppManifest.xml │ │ ├── Resources │ │ ├── AppResources.Designer.cs │ │ └── AppResources.resx │ │ └── SplashScreenImage.jpg ├── Source │ ├── Internal │ │ ├── BackgroundDownloadCompletedEventAdapter.cs │ │ ├── BackgroundDownloadEventAdapter.cs │ │ ├── BackgroundDownloadProgressEventAdapter.cs │ │ ├── BackgroundDownloadRequestBuilder.cs │ │ ├── BackgroundDownloadResponse.cs │ │ ├── BackgroundTransferHelper.cs │ │ ├── BackgroundUploadCompletedEventAdapter.cs │ │ ├── BackgroundUploadEventAdapter.cs │ │ ├── BackgroundUploadProgressEventAdapter.cs │ │ ├── BackgroundUploadRequestBuilder.cs │ │ ├── BackgroundUploadResponseHandler.cs │ │ ├── BackgroundWorker.cs │ │ ├── IBackgroundTransferService.cs │ │ ├── IBackgroundUploadResponseHandlerObserver.cs │ │ ├── IBackgroundWorkerStrategy.cs │ │ ├── LiveDownloadOperationResult.cs │ │ ├── LoginPage.xaml.cs │ │ ├── Operations │ │ │ ├── BackgroundDownloadOperation.cs │ │ │ └── BackgroundUploadOperation.cs │ │ ├── PhoneAuthClient.cs │ │ ├── PhoneBackgroundTransferService.cs │ │ ├── Platform.cs │ │ ├── ResourceHelper.cs │ │ └── SynchronizationContextWrapper.cs │ ├── Microsoft.Live.WP8.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Public │ │ ├── BackgroundTransferPreferences.cs │ │ ├── LiveAuthClient.cs │ │ ├── LiveConnectClient.cs │ │ ├── LivePendingDownload.cs │ │ └── LivePendingUpload.cs │ ├── Resources.Designer.cs │ └── Resources.resx └── UnitTests │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── AlignmentGrid.png │ ├── ApplicationIcon.png │ └── Tiles │ │ ├── FlipCycleTileLarge.png │ │ ├── FlipCycleTileMedium.png │ │ ├── FlipCycleTileSmall.png │ │ ├── IconicTileMediumLarge.png │ │ └── IconicTileSmall.png │ ├── BackgroundDownloadRequestBuilderTest.cs │ ├── BackgroundTransferHelperTest.cs │ ├── BackgroundUploadRequestBuilderTest.cs │ ├── BackgroundUploadResponseHandlerTest.cs │ ├── BackgroundWorkerTest.cs │ ├── Lib │ ├── Microsoft.Silverlight.Testing.dll │ ├── Microsoft.Silverlight.Testing.pdb │ ├── Microsoft.Silverlight.Testing.xml │ ├── Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.dll │ ├── Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.pdb │ └── Microsoft.VisualStudio.QualityTools.UnitTesting.Silverlight.xml │ ├── LiveAuthClientTest.cs │ ├── LiveConnectClientTest.cs │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Microsoft.Live.WP8.UnitTests.csproj │ ├── Operations │ └── BackgroundDownloadOperationTest.cs │ ├── Properties │ ├── AppManifest.xml │ ├── AssemblyInfo.cs │ └── WMAppManifest.xml │ ├── Resources │ ├── AppResources.Designer.cs │ └── AppResources.resx │ ├── ServerResponseReaderTest.cs │ ├── SplashScreenImage.jpg │ ├── Stubs │ ├── MockBackgroundTransferService.cs │ ├── MockBackgroundUploadResponseHandlerObserver.cs │ ├── MockBackgroundWorkerStrategy.cs │ └── TestAuthClient.cs │ └── TestCases.cs ├── Web ├── Local.testsettings ├── Microsoft.Live.Web.sln ├── Microsoft.Live.Web.vsmdi ├── Samples │ ├── AuthWithMSAccount │ │ ├── App_Start │ │ │ ├── BundleConfig.cs │ │ │ ├── FilterConfig.cs │ │ │ ├── RouteConfig.cs │ │ │ └── WebApiConfig.cs │ │ ├── Content │ │ │ ├── Site.css │ │ │ └── themes │ │ │ │ └── base │ │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery.ui.accordion.css │ │ │ │ ├── jquery.ui.all.css │ │ │ │ ├── jquery.ui.autocomplete.css │ │ │ │ ├── jquery.ui.base.css │ │ │ │ ├── jquery.ui.button.css │ │ │ │ ├── jquery.ui.core.css │ │ │ │ ├── jquery.ui.datepicker.css │ │ │ │ ├── jquery.ui.dialog.css │ │ │ │ ├── jquery.ui.progressbar.css │ │ │ │ ├── jquery.ui.resizable.css │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ ├── jquery.ui.slider.css │ │ │ │ ├── jquery.ui.tabs.css │ │ │ │ ├── jquery.ui.theme.css │ │ │ │ └── minified │ │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui.min.css │ │ │ │ ├── jquery.ui.accordion.min.css │ │ │ │ ├── jquery.ui.autocomplete.min.css │ │ │ │ ├── jquery.ui.button.min.css │ │ │ │ ├── jquery.ui.core.min.css │ │ │ │ ├── jquery.ui.datepicker.min.css │ │ │ │ ├── jquery.ui.dialog.min.css │ │ │ │ ├── jquery.ui.progressbar.min.css │ │ │ │ ├── jquery.ui.resizable.min.css │ │ │ │ ├── jquery.ui.selectable.min.css │ │ │ │ ├── jquery.ui.slider.min.css │ │ │ │ ├── jquery.ui.tabs.min.css │ │ │ │ └── jquery.ui.theme.min.css │ │ ├── Controllers │ │ │ └── AccountController.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Microsoft.Live.Web.Samples.AuthWithMSAccount.csproj │ │ ├── Models │ │ │ ├── AccountDataModel.cs │ │ │ ├── JSClientModel.cs │ │ │ └── LoggedOutModel.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Scripts │ │ │ ├── _references.js │ │ │ ├── jquery-1.7.1.intellisense.js │ │ │ ├── jquery-1.7.1.js │ │ │ ├── jquery-1.7.1.min.js │ │ │ ├── jquery-ui-1.8.20.js │ │ │ ├── jquery-ui-1.8.20.min.js │ │ │ ├── jquery.unobtrusive-ajax.js │ │ │ ├── jquery.unobtrusive-ajax.min.js │ │ │ ├── jquery.validate-vsdoc.js │ │ │ ├── jquery.validate.js │ │ │ ├── jquery.validate.min.js │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ ├── jquery.validate.unobtrusive.min.js │ │ │ ├── knockout-2.1.0.debug.js │ │ │ ├── knockout-2.1.0.js │ │ │ └── modernizr-2.5.3.js │ │ ├── Views │ │ │ ├── Account │ │ │ │ ├── AccountData.cshtml │ │ │ │ ├── AjaxCallback.cshtml │ │ │ │ ├── AjaxClient.cshtml │ │ │ │ └── LoggedOut.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ └── _Layout.cshtml │ │ │ ├── Web.config │ │ │ └── _ViewStart.cshtml │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── bin │ │ │ ├── Antlr3.Runtime.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── System.Web.Optimization.dll │ │ │ └── WebGrease.dll │ │ └── packages.config │ ├── ConnectAppUserWithMSAccount │ │ ├── App_Data │ │ │ ├── aspnet-Microsoft.Live.Web.Samples.ConnectAppUserWithMSAccount-20120930235026.mdf │ │ │ └── aspnet-Microsoft.Live.Web.Samples.ConnectAppUserWithMSAccount-20120930235026_log.ldf │ │ ├── App_Start │ │ │ ├── AuthConfig.cs │ │ │ ├── BundleConfig.cs │ │ │ ├── FilterConfig.cs │ │ │ ├── RouteConfig.cs │ │ │ └── WebApiConfig.cs │ │ ├── Content │ │ │ ├── Site.css │ │ │ └── themes │ │ │ │ └── base │ │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery.ui.accordion.css │ │ │ │ ├── jquery.ui.all.css │ │ │ │ ├── jquery.ui.autocomplete.css │ │ │ │ ├── jquery.ui.base.css │ │ │ │ ├── jquery.ui.button.css │ │ │ │ ├── jquery.ui.core.css │ │ │ │ ├── jquery.ui.datepicker.css │ │ │ │ ├── jquery.ui.dialog.css │ │ │ │ ├── jquery.ui.progressbar.css │ │ │ │ ├── jquery.ui.resizable.css │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ ├── jquery.ui.slider.css │ │ │ │ ├── jquery.ui.tabs.css │ │ │ │ ├── jquery.ui.theme.css │ │ │ │ └── minified │ │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui.min.css │ │ │ │ ├── jquery.ui.accordion.min.css │ │ │ │ ├── jquery.ui.autocomplete.min.css │ │ │ │ ├── jquery.ui.button.min.css │ │ │ │ ├── jquery.ui.core.min.css │ │ │ │ ├── jquery.ui.datepicker.min.css │ │ │ │ ├── jquery.ui.dialog.min.css │ │ │ │ ├── jquery.ui.progressbar.min.css │ │ │ │ ├── jquery.ui.resizable.min.css │ │ │ │ ├── jquery.ui.selectable.min.css │ │ │ │ ├── jquery.ui.slider.min.css │ │ │ │ ├── jquery.ui.tabs.min.css │ │ │ │ └── jquery.ui.theme.min.css │ │ ├── Controllers │ │ │ ├── AccountController.cs │ │ │ └── HomeController.cs │ │ ├── Filters │ │ │ └── InitializeSimpleMembershipAttribute.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Images │ │ │ ├── accent.png │ │ │ ├── bullet.png │ │ │ ├── heroAccent.png │ │ │ ├── orderedList0.png │ │ │ ├── orderedList1.png │ │ │ ├── orderedList2.png │ │ │ ├── orderedList3.png │ │ │ ├── orderedList4.png │ │ │ ├── orderedList5.png │ │ │ ├── orderedList6.png │ │ │ ├── orderedList7.png │ │ │ ├── orderedList8.png │ │ │ └── orderedList9.png │ │ ├── Microsoft.Live.Web.Samples.ConnectAppUserWithMSAccount.csproj │ │ ├── Models │ │ │ └── AccountModels.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Scripts │ │ │ ├── _references.js │ │ │ ├── jquery-1.7.1-vsdoc.js │ │ │ ├── jquery-1.7.1.js │ │ │ ├── jquery-1.7.1.min.js │ │ │ ├── jquery-ui-1.8.20.js │ │ │ ├── jquery-ui-1.8.20.min.js │ │ │ ├── jquery.unobtrusive-ajax.js │ │ │ ├── jquery.unobtrusive-ajax.min.js │ │ │ ├── jquery.validate-vsdoc.js │ │ │ ├── jquery.validate.js │ │ │ ├── jquery.validate.min.js │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ ├── jquery.validate.unobtrusive.min.js │ │ │ ├── knockout-2.1.0.debug.js │ │ │ ├── knockout-2.1.0.js │ │ │ └── modernizr-2.5.3.js │ │ ├── Views │ │ │ ├── Account │ │ │ │ ├── AjaxCallback.cshtml │ │ │ │ ├── AjaxClient.cshtml │ │ │ │ ├── Login.cshtml │ │ │ │ ├── MSAccountPage.cshtml │ │ │ │ ├── Manage.cshtml │ │ │ │ ├── Register.cshtml │ │ │ │ ├── _ChangePasswordPartial.cshtml │ │ │ │ ├── _DisconnectMSAccountFormPartial.cshtml │ │ │ │ └── _MSUserDataPartial.cshtml │ │ │ ├── Home │ │ │ │ ├── About.cshtml │ │ │ │ ├── Contact.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _LoginPartial.cshtml │ │ │ ├── Web.config │ │ │ └── _ViewStart.cshtml │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── bin │ │ │ ├── Antlr3.Runtime.dll │ │ │ ├── EntityFramework.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── System.Web.Optimization.dll │ │ │ └── WebGrease.dll │ │ ├── favicon.ico │ │ └── packages.config │ └── OAuthServer │ │ ├── Asp.net │ │ └── OAuthSample │ │ │ ├── App_Code │ │ │ ├── JsonWebToken.cs │ │ │ ├── OAuthConstants.cs │ │ │ ├── OAuthError.cs │ │ │ └── OAuthToken.cs │ │ │ ├── Callback.aspx │ │ │ ├── Callback.aspx.cs │ │ │ ├── default.html │ │ │ └── readme.txt │ │ └── PHP │ │ └── OauthSample │ │ ├── callback.php │ │ ├── default.html │ │ └── readme.txt ├── Source │ ├── Internal │ │ ├── LiveAuthClientCore.cs │ │ ├── Platform.cs │ │ └── Utilities │ │ │ ├── HttpContextUtility.cs │ │ │ ├── JsonWebToken.cs │ │ │ ├── JsonWebTokenClaims.cs │ │ │ ├── JsonWebTokenEnvelope.cs │ │ │ └── LiveAuthWebUtility.cs │ ├── Microsoft.Live.Web.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Public │ │ ├── LiveAuthClient.cs │ │ └── LiveConnectClientExt.cs │ └── packages.config ├── TraceAndTestImpact.testsettings └── UnitTests │ ├── LiveAuthClientUnitTests.cs │ ├── LiveAuthUtilityUnitTests.cs │ ├── LiveAuthWebUtilityUnitTests.cs │ ├── LiveUtilityUnitTests.cs │ ├── Microsoft.Live.Web.UnitTests.csproj │ └── Properties │ └── AssemblyInfo.cs └── WinStore ├── Microsoft.Live.WinStore.sln ├── Samples ├── Windows │ ├── HTML │ │ ├── LiveSDKJavaScriptLab │ │ │ ├── LiveSDKJavaScriptLab.jsproj │ │ │ ├── LiveSDKJavaScriptLab.sln │ │ │ ├── apiservices.html │ │ │ ├── auth.html │ │ │ ├── css │ │ │ │ ├── apiservices.css │ │ │ │ ├── auth.css │ │ │ │ ├── default.css │ │ │ │ ├── header.css │ │ │ │ ├── onedrive.css │ │ │ │ ├── share.css │ │ │ │ └── signincontrol.css │ │ │ ├── default.html │ │ │ ├── header.html │ │ │ ├── images │ │ │ │ ├── live-sdk.png │ │ │ │ ├── logo.png │ │ │ │ ├── smalllogo.png │ │ │ │ ├── splashscreen.png │ │ │ │ ├── storelogo.png │ │ │ │ └── windowslive.png │ │ │ ├── js │ │ │ │ ├── apiservices.js │ │ │ │ ├── auth.js │ │ │ │ ├── default.js │ │ │ │ ├── onedrive.js │ │ │ │ ├── output.js │ │ │ │ └── share.js │ │ │ ├── onedrive.html │ │ │ ├── output.html │ │ │ └── package.appxmanifest │ │ └── PhotoSky │ │ │ ├── PhotoSkyJavaScript.sln │ │ │ └── PhotoSkyJavaScript │ │ │ ├── PhotoSkyJavaScript.jsproj │ │ │ ├── PhotoSkyJavaScript_TemporaryKey.pfx │ │ │ ├── css │ │ │ └── default.css │ │ │ ├── default.html │ │ │ ├── images │ │ │ ├── logo.png │ │ │ ├── smalllogo.png │ │ │ ├── splashscreen.png │ │ │ └── storelogo.png │ │ │ ├── js │ │ │ ├── data.js │ │ │ ├── default.js │ │ │ └── navigator.js │ │ │ ├── package.appxmanifest │ │ │ └── pages │ │ │ ├── groupDetail │ │ │ ├── groupDetail.css │ │ │ ├── groupDetail.html │ │ │ └── groupDetail.js │ │ │ ├── groupedItems │ │ │ ├── groupedItems.css │ │ │ ├── groupedItems.html │ │ │ └── groupedItems.js │ │ │ ├── itemDetail │ │ │ ├── itemDetail.css │ │ │ ├── itemDetail.html │ │ │ └── itemDetail.js │ │ │ └── settingsAccountUI │ │ │ ├── settingsFlyout.js │ │ │ └── settingsFlyoutUI.html │ └── XAML │ │ ├── APIExplorer │ │ ├── APIExplorer_TemporaryKey.pfx │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── Logo.png │ │ │ ├── SmallLogo.png │ │ │ ├── SplashScreen.png │ │ │ └── StoreLogo.png │ │ ├── Common │ │ │ └── StandardStyles.xaml │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Microsoft.Live.Win8.Samples.APIExplorer.csproj │ │ ├── Package.appxmanifest │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── FileUploadDownload │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── Logo.png │ │ │ ├── SmallLogo.png │ │ │ ├── SplashScreen.png │ │ │ └── StoreLogo.png │ │ ├── Common │ │ │ └── StandardStyles.xaml │ │ ├── FileUploadDownload_StoreKey.pfx │ │ ├── FileUploadDownload_TemporaryKey.pfx │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Microsoft.Live.Win8.Samples.FileUploadDownload.csproj │ │ ├── Package.StoreAssociation.xml │ │ ├── Package.appxmanifest │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── PhotoSky │ │ ├── PhotoSkyCSharp.sln │ │ └── PhotoSkyCSharp │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Assets │ │ │ ├── BackArrow.png │ │ │ ├── DarkGray.png │ │ │ ├── LightGray.png │ │ │ ├── Logo.png │ │ │ ├── MediumGray.png │ │ │ ├── SkyDrive.png │ │ │ ├── SmallLogo.png │ │ │ ├── SplashScreen.png │ │ │ └── StoreLogo.png │ │ │ ├── Common │ │ │ ├── BindableBase.cs │ │ │ ├── BooleanNegationConverter.cs │ │ │ ├── BooleanToVisibilityConverter.cs │ │ │ ├── LayoutAwarePage.cs │ │ │ ├── ReadMe.txt │ │ │ ├── RichTextColumns.cs │ │ │ ├── StandardStyles.xaml │ │ │ └── SuspensionManager.cs │ │ │ ├── DataModel │ │ │ └── SkyDriveDataSource.cs │ │ │ ├── GroupDetailPage.xaml │ │ │ ├── GroupDetailPage.xaml.cs │ │ │ ├── GroupedItemsPage.xaml │ │ │ ├── GroupedItemsPage.xaml.cs │ │ │ ├── ItemDetailPage.xaml │ │ │ ├── ItemDetailPage.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ ├── PhotoSkyCSharp.csproj │ │ │ ├── PhotoSkyCSharp_TemporaryKey.pfx │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── SimpleSettingsNarrow.xaml │ │ │ └── SimpleSettingsNarrow.xaml.cs │ │ └── StreamUploadDownload │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ ├── Logo.png │ │ ├── SmallLogo.png │ │ ├── SplashScreen.png │ │ └── StoreLogo.png │ │ ├── Common │ │ └── StandardStyles.xaml │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Microsoft.Live.Win8.Samples.StreamUploadDownload.csproj │ │ ├── Package.StoreAssociation.xml │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── StreamUploadDownload_StoreKey.pfx │ │ └── StreamUploadDownload_TemporaryKey.pfx └── WindowsPhone │ ├── HTML │ └── LiveSDKJavaScriptPhoneSample │ │ ├── LiveSDKJavaScriptPhoneSample.jsproj │ │ ├── css │ │ └── default.css │ │ ├── default.html │ │ ├── images │ │ ├── logo.scale-100.png │ │ ├── logo.scale44.png │ │ ├── logo.scale71.png │ │ ├── logo100.png │ │ ├── logo100.scale-100.png │ │ ├── logo150.png │ │ ├── logo150.scale-100.png │ │ ├── logo44.png │ │ ├── logo44.scale-100.png │ │ ├── logo50.png │ │ ├── logo50.scale-100.png │ │ ├── logo71.png │ │ ├── logo71.scale-100.png │ │ ├── mslogo.png │ │ ├── profileIcon.png │ │ ├── smalllogo.scale-100.png │ │ ├── splashscreen.scale-100.png │ │ └── storelogo.scale-100.png │ │ ├── js │ │ ├── default.js │ │ └── navigator.js │ │ ├── package.appxmanifest │ │ └── pages │ │ ├── apiLab │ │ ├── apiLab.css │ │ ├── apiLab.html │ │ └── apiLab.js │ │ ├── header │ │ ├── header.css │ │ ├── header.html │ │ └── header.js │ │ ├── home │ │ ├── home.css │ │ ├── home.html │ │ └── home.js │ │ └── upload │ │ ├── upload.css │ │ ├── upload.html │ │ └── upload.js │ └── XAML │ └── LiveSDKPhoneRTSample │ ├── ApiLab.xaml │ ├── ApiLab.xaml.cs │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── Logo.scale-100.png │ ├── SmallLogo.scale-100.png │ ├── SplashScreen.scale-100.png │ ├── StoreLogo.scale-100.png │ ├── WideLogo.scale-100.png │ ├── logo100.png │ ├── logo150.png │ ├── logo44.png │ ├── logo71.png │ ├── mslogo.png │ └── profileIcon.png │ ├── LiveSDKPhoneRTSample.csproj │ ├── LiveSDKPhoneRTSample.sln │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ └── AssemblyInfo.cs │ ├── UploadDownload.xaml │ └── UploadDownload.xaml.cs ├── Source ├── Internal │ ├── HttpUtility.cs │ ├── LoginResult.cs │ ├── Operations │ │ ├── CreateBackgroundDownloadOperation.cs │ │ ├── CreateBackgroundUploadOperation.cs │ │ ├── TailoredDownloadOperation.cs │ │ └── TailoredUploadOperation.cs │ ├── Platform.cs │ ├── ResourceHelper.cs │ ├── SynchronizationContextWrapper.cs │ └── TailoredAuthClient.cs ├── Microsoft.Live.WPRTSL.CoreXT.csproj ├── Microsoft.Live.WinStore.csproj ├── Properties │ └── AssemblyInfo.cs ├── Public │ ├── LiveAuthClient.cs │ ├── LiveConnectClientExtensions.cs │ ├── LiveDownloadOperation.cs │ ├── LiveDownloadOperationResult.cs │ └── LiveUploadOperation.cs ├── Resources.Designer.cs ├── Resources.resw ├── Resources.resx └── SDKManifest.xml └── UnitTests ├── Images ├── UnitTestLogo.png ├── UnitTestSmallLogo.png ├── UnitTestSplashScreen.png └── UnitTestStoreLogo.png ├── LiveAuthClientTest.cs ├── LiveConnectClientTest.cs ├── Microsoft.Live.UnitTests.Win8_TemporaryKey.pfx ├── Microsoft.Live.WinStore.UnitTests.csproj ├── Operations ├── TailoredDownloadOperationTest.cs └── TailoredUploadOperationTest.cs ├── Package.appxmanifest ├── Properties └── AssemblyInfo.cs └── Stubs ├── StorageFileStub.cs └── TestAuthClient.cs /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/README.md -------------------------------------------------------------------------------- /src/Common/Resources/fonts/LiveSymbol/LiveSymbol.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Resources/fonts/LiveSymbol/LiveSymbol.ttf -------------------------------------------------------------------------------- /src/Common/Source/Internal/ApiMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/ApiMethod.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/AuthConstant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/AuthConstant.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/AuthEndpointsInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/AuthEndpointsInfo.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/AuthErrorCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/AuthErrorCodes.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/DisplayType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/DisplayType.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/DynamicDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/DynamicDictionary.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/HttpMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/HttpMethods.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/IAuthClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/IAuthClient.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/IServerResponseReaderObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/IServerResponseReaderObserver.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/IWebRequestFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/IWebRequestFactory.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/Operations/ApiOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/Operations/ApiOperation.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/Operations/ApiWriteOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/Operations/ApiWriteOperation.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/Operations/DownloadOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/Operations/DownloadOperation.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/Operations/GetUploadLinkOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/Operations/GetUploadLinkOperation.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/Operations/Operation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/Operations/Operation.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/Operations/OperationStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/Operations/OperationStatus.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/Operations/RefreshTokenOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/Operations/RefreshTokenOperation.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/Operations/StreamCopyOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/Operations/StreamCopyOperation.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/Operations/UploadOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/Operations/UploadOperation.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/Operations/WebOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/Operations/WebOperation.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/QueryParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/QueryParameters.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/ResponseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/ResponseType.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/Serialization/IJsonSerializable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/Serialization/IJsonSerializable.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/Serialization/IndentedTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/Serialization/IndentedTextWriter.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/Serialization/JsonReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/Serialization/JsonReader.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/Serialization/JsonWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/Serialization/JsonWriter.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/ServerResponseReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/ServerResponseReader.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/StringBuilderExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/StringBuilderExtension.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/Utilities/ErrorText.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/Utilities/ErrorText.Designer.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/Utilities/ErrorText.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/Utilities/ErrorText.resx -------------------------------------------------------------------------------- /src/Common/Source/Internal/Utilities/LiveAuthRequestUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/Utilities/LiveAuthRequestUtility.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/Utilities/LiveAuthUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/Utilities/LiveAuthUtility.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/Utilities/LiveUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/Utilities/LiveUtility.cs -------------------------------------------------------------------------------- /src/Common/Source/Internal/WebRequestFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Internal/WebRequestFactory.cs -------------------------------------------------------------------------------- /src/Common/Source/Public/IRefreshTokenHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Public/IRefreshTokenHandler.cs -------------------------------------------------------------------------------- /src/Common/Source/Public/LiveAuthClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Public/LiveAuthClient.cs -------------------------------------------------------------------------------- /src/Common/Source/Public/LiveAuthException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Public/LiveAuthException.cs -------------------------------------------------------------------------------- /src/Common/Source/Public/LiveConnectClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Public/LiveConnectClient.cs -------------------------------------------------------------------------------- /src/Common/Source/Public/LiveConnectClientTaskAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Public/LiveConnectClientTaskAsync.cs -------------------------------------------------------------------------------- /src/Common/Source/Public/LiveConnectException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Public/LiveConnectException.cs -------------------------------------------------------------------------------- /src/Common/Source/Public/LiveConnectSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Public/LiveConnectSession.cs -------------------------------------------------------------------------------- /src/Common/Source/Public/LiveConnectSessionStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Public/LiveConnectSessionStatus.cs -------------------------------------------------------------------------------- /src/Common/Source/Public/LiveLoginResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Public/LiveLoginResult.cs -------------------------------------------------------------------------------- /src/Common/Source/Public/LiveOperationProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Public/LiveOperationProgress.cs -------------------------------------------------------------------------------- /src/Common/Source/Public/LiveOperationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Public/LiveOperationResult.cs -------------------------------------------------------------------------------- /src/Common/Source/Public/OverwriteOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Public/OverwriteOption.cs -------------------------------------------------------------------------------- /src/Common/Source/Public/RefreshTokenInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Public/RefreshTokenInfo.cs -------------------------------------------------------------------------------- /src/Common/Source/Public/ThemeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/Source/Public/ThemeType.cs -------------------------------------------------------------------------------- /src/Common/UnitTests/DynamicDictionaryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/UnitTests/DynamicDictionaryTest.cs -------------------------------------------------------------------------------- /src/Common/UnitTests/Helpers/AuthConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/UnitTests/Helpers/AuthConstants.cs -------------------------------------------------------------------------------- /src/Common/UnitTests/Helpers/AuthErrorCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/UnitTests/Helpers/AuthErrorCodes.cs -------------------------------------------------------------------------------- /src/Common/UnitTests/Helpers/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/UnitTests/Helpers/Helpers.cs -------------------------------------------------------------------------------- /src/Common/UnitTests/LiveOperationProgressTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/UnitTests/LiveOperationProgressTest.cs -------------------------------------------------------------------------------- /src/Common/UnitTests/Operations/ApiOperationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/UnitTests/Operations/ApiOperationTest.cs -------------------------------------------------------------------------------- /src/Common/UnitTests/Operations/ApiWriteOperationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/UnitTests/Operations/ApiWriteOperationTest.cs -------------------------------------------------------------------------------- /src/Common/UnitTests/Operations/GetUploadLinkOperationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/UnitTests/Operations/GetUploadLinkOperationTest.cs -------------------------------------------------------------------------------- /src/Common/UnitTests/Operations/RefreshTokenOperationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/UnitTests/Operations/RefreshTokenOperationTest.cs -------------------------------------------------------------------------------- /src/Common/UnitTests/QueryParametersTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/UnitTests/QueryParametersTest.cs -------------------------------------------------------------------------------- /src/Common/UnitTests/Serialization/IndentedTextWriterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/UnitTests/Serialization/IndentedTextWriterTest.cs -------------------------------------------------------------------------------- /src/Common/UnitTests/Serialization/JsonReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/UnitTests/Serialization/JsonReaderTests.cs -------------------------------------------------------------------------------- /src/Common/UnitTests/Serialization/JsonWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/UnitTests/Serialization/JsonWriterTests.cs -------------------------------------------------------------------------------- /src/Common/UnitTests/StringBuilderExtensionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/UnitTests/StringBuilderExtensionTest.cs -------------------------------------------------------------------------------- /src/Common/UnitTests/Stubs/FakeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/UnitTests/Stubs/FakeService.cs -------------------------------------------------------------------------------- /src/Common/UnitTests/Stubs/MockAsyncResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/UnitTests/Stubs/MockAsyncResult.cs -------------------------------------------------------------------------------- /src/Common/UnitTests/Stubs/MockNetworkStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/UnitTests/Stubs/MockNetworkStream.cs -------------------------------------------------------------------------------- /src/Common/UnitTests/Stubs/MockServerResponseReaderObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/UnitTests/Stubs/MockServerResponseReaderObserver.cs -------------------------------------------------------------------------------- /src/Common/UnitTests/Stubs/MockWebRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/UnitTests/Stubs/MockWebRequest.cs -------------------------------------------------------------------------------- /src/Common/UnitTests/Stubs/MockWebResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/UnitTests/Stubs/MockWebResponse.cs -------------------------------------------------------------------------------- /src/Common/UnitTests/Stubs/ResponseJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/UnitTests/Stubs/ResponseJson.cs -------------------------------------------------------------------------------- /src/Common/UnitTests/Stubs/TestWebRequestFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Common/UnitTests/Stubs/TestWebRequestFactory.cs -------------------------------------------------------------------------------- /src/Desktop/Microsoft.Live.Desktop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Desktop/Microsoft.Live.Desktop.sln -------------------------------------------------------------------------------- /src/Desktop/Samples/ApiExplorer/AuthResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Desktop/Samples/ApiExplorer/AuthResult.cs -------------------------------------------------------------------------------- /src/Desktop/Samples/ApiExplorer/JsonHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Desktop/Samples/ApiExplorer/JsonHelper.cs -------------------------------------------------------------------------------- /src/Desktop/Samples/ApiExplorer/LiveAuthForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Desktop/Samples/ApiExplorer/LiveAuthForm.Designer.cs -------------------------------------------------------------------------------- /src/Desktop/Samples/ApiExplorer/LiveAuthForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Desktop/Samples/ApiExplorer/LiveAuthForm.cs -------------------------------------------------------------------------------- /src/Desktop/Samples/ApiExplorer/LiveAuthForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Desktop/Samples/ApiExplorer/LiveAuthForm.resx -------------------------------------------------------------------------------- /src/Desktop/Samples/ApiExplorer/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Desktop/Samples/ApiExplorer/MainForm.Designer.cs -------------------------------------------------------------------------------- /src/Desktop/Samples/ApiExplorer/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Desktop/Samples/ApiExplorer/MainForm.cs -------------------------------------------------------------------------------- /src/Desktop/Samples/ApiExplorer/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Desktop/Samples/ApiExplorer/MainForm.resx -------------------------------------------------------------------------------- /src/Desktop/Samples/ApiExplorer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Desktop/Samples/ApiExplorer/Program.cs -------------------------------------------------------------------------------- /src/Desktop/Samples/ApiExplorer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Desktop/Samples/ApiExplorer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Desktop/Samples/ApiExplorer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Desktop/Samples/ApiExplorer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Desktop/Samples/ApiExplorer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Desktop/Samples/ApiExplorer/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Desktop/Samples/ApiExplorer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Desktop/Samples/ApiExplorer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Desktop/Samples/ApiExplorer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Desktop/Samples/ApiExplorer/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Desktop/Samples/ApiExplorer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Desktop/Samples/ApiExplorer/app.config -------------------------------------------------------------------------------- /src/Desktop/Source/Internal/LiveAuthClientCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Desktop/Source/Internal/LiveAuthClientCore.cs -------------------------------------------------------------------------------- /src/Desktop/Source/Internal/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Desktop/Source/Internal/Platform.cs -------------------------------------------------------------------------------- /src/Desktop/Source/Microsoft.Live.Desktop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Desktop/Source/Microsoft.Live.Desktop.csproj -------------------------------------------------------------------------------- /src/Desktop/Source/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Desktop/Source/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Desktop/Source/Public/LiveAuthClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Desktop/Source/Public/LiveAuthClient.cs -------------------------------------------------------------------------------- /src/Desktop/UnitTests/Microsoft.Live.Desktop.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Desktop/UnitTests/Microsoft.Live.Desktop.UnitTests.csproj -------------------------------------------------------------------------------- /src/Desktop/UnitTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Desktop/UnitTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/WP8/Controls/BrandingType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/BrandingType.cs -------------------------------------------------------------------------------- /src/WP8/Controls/ButtonTextType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/ButtonTextType.cs -------------------------------------------------------------------------------- /src/WP8/Controls/Design/MetadataBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Design/MetadataBase.cs -------------------------------------------------------------------------------- /src/WP8/Controls/Design/Microsoft.Live.WP8.Controls.Design.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Design/Microsoft.Live.WP8.Controls.Design.csproj -------------------------------------------------------------------------------- /src/WP8/Controls/Design/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Design/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/WP8/Controls/Design/StringResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Design/StringResources.Designer.cs -------------------------------------------------------------------------------- /src/WP8/Controls/Design/StringResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Design/StringResources.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Images/Hotmail_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Images/Hotmail_black.png -------------------------------------------------------------------------------- /src/WP8/Controls/Images/Messenger_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Images/Messenger_black.png -------------------------------------------------------------------------------- /src/WP8/Controls/Images/SkyDrive_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Images/SkyDrive_black.png -------------------------------------------------------------------------------- /src/WP8/Controls/Images/Windows_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Images/Windows_black.png -------------------------------------------------------------------------------- /src/WP8/Controls/LiveConnectSessionChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/LiveConnectSessionChangedEventArgs.cs -------------------------------------------------------------------------------- /src/WP8/Controls/Microsoft.Live.WP8.Controls.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Microsoft.Live.WP8.Controls.csproj -------------------------------------------------------------------------------- /src/WP8/Controls/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/WP8/Controls/ResourceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/ResourceHelper.cs -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/Errors.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/Errors.Designer.cs -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/Errors.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/Errors.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.Designer.cs -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.af.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.af.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.am-et.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.am-et.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.ar-ploc-sa.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.ar-ploc-sa.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.ar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.ar.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.as-in.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.as-in.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.az-latn-az.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.az-latn-az.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.be.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.be.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.bg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.bg.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.bn-bd.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.bn-bd.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.bn-in.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.bn-in.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.bs-cyrl-ba.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.bs-cyrl-ba.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.bs-latn-ba.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.bs-latn-ba.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.ca-es-valencia.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.ca-es-valencia.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.ca.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.ca.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.cs.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.cy-gb.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.cy-gb.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.da.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.da.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.de-ploc-de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.de-ploc-de.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.de.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.el.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.el.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.en-gb.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.en-gb.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.en-locr-us.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.en-locr-us.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.en-us.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.en-us.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.en.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.es.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.et.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.et.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.eu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.eu.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.fa.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.fa.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.fi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.fi.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.fil-ph.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.fil-ph.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.fr.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.ga-ie.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.ga-ie.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.gd-latn.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.gd-latn.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.gl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.gl.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.gu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.gu.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.ha-latn-ng.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.ha-latn-ng.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.he.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.he.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.hi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.hi.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.hr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.hr.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.hu.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.hy.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.hy.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.id.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.id.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.ig-ng.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.ig-ng.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.is.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.is.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.it.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.iu-latn-ca.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.iu-latn-ca.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.ja-ploc-jp.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.ja-ploc-jp.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.ja.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.ka.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.ka.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.kk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.kk.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.km-kh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.km-kh.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.kn.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.kn.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.ko.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.kok.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.kok.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.ku-arab.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.ku-arab.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.ky.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.ky.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.lb-lu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.lb-lu.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.lt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.lt.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.lv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.lv.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.mi-nz.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.mi-nz.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.mk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.mk.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.ml-in.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.ml-in.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.mn.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.mn.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.mr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.mr.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.ms.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.ms.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.mt-mt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.mt-mt.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.nb-no.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.nb-no.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.ne-np.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.ne-np.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.nl.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.nn-no.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.nn-no.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.no.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.no.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.nso-za.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.nso-za.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.or-in.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.or-in.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.pa-arab.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.pa-arab.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.pa.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.pa.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.pl.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.prs-af.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.prs-af.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.pt-br.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.pt-br.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.pt-pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.pt-pt.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.qut-latn.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.qut-latn.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.quz-pe.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.quz-pe.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.ro.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.ru.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.rw.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.rw.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.sd-arab.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.sd-arab.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.si-lk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.si-lk.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.sk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.sk.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.sl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.sl.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.sq.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.sq.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.sr-cyrl-ba.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.sr-cyrl-ba.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.sr-cyrl-cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.sr-cyrl-cs.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.sr-latn-cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.sr-latn-cs.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.sv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.sv.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.sw.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.sw.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.ta.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.ta.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.te.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.te.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.tg-cyrl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.tg-cyrl.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.th.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.th.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.ti.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.ti.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.tk-tm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.tk-tm.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.tn-za.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.tn-za.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.tr.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.tt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.tt.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.ug-arab.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.ug-arab.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.uk.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.ur.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.ur.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.uz-latn-uz.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.uz-latn-uz.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.vi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.vi.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.wo.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.wo.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.xh-za.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.xh-za.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.yo-ng.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.yo-ng.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.zh-cn.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.zh-cn.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.zh-tw.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.zh-tw.resx -------------------------------------------------------------------------------- /src/WP8/Controls/Resources/WLText.zu-za.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/Resources/WLText.zu-za.resx -------------------------------------------------------------------------------- /src/WP8/Controls/SignInButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/SignInButton.cs -------------------------------------------------------------------------------- /src/WP8/Controls/SignInButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/SignInButton.xaml -------------------------------------------------------------------------------- /src/WP8/Controls/SignInButton.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Controls/SignInButton.xaml.cs -------------------------------------------------------------------------------- /src/WP8/Microsoft.Live.WP8.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Microsoft.Live.WP8.sln -------------------------------------------------------------------------------- /src/WP8/Samples/APIExplorer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/APIExplorer/App.xaml -------------------------------------------------------------------------------- /src/WP8/Samples/APIExplorer/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/APIExplorer/App.xaml.cs -------------------------------------------------------------------------------- /src/WP8/Samples/APIExplorer/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/APIExplorer/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /src/WP8/Samples/APIExplorer/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/APIExplorer/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /src/WP8/Samples/APIExplorer/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/APIExplorer/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /src/WP8/Samples/APIExplorer/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/APIExplorer/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /src/WP8/Samples/APIExplorer/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/APIExplorer/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /src/WP8/Samples/APIExplorer/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/APIExplorer/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /src/WP8/Samples/APIExplorer/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/APIExplorer/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /src/WP8/Samples/APIExplorer/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/APIExplorer/LocalizedStrings.cs -------------------------------------------------------------------------------- /src/WP8/Samples/APIExplorer/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/APIExplorer/MainPage.xaml -------------------------------------------------------------------------------- /src/WP8/Samples/APIExplorer/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/APIExplorer/MainPage.xaml.cs -------------------------------------------------------------------------------- /src/WP8/Samples/APIExplorer/Microsoft.Live.WP8.Samples.APIExplorer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/APIExplorer/Microsoft.Live.WP8.Samples.APIExplorer.csproj -------------------------------------------------------------------------------- /src/WP8/Samples/APIExplorer/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/APIExplorer/Properties/AppManifest.xml -------------------------------------------------------------------------------- /src/WP8/Samples/APIExplorer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/APIExplorer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/WP8/Samples/APIExplorer/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/APIExplorer/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /src/WP8/Samples/APIExplorer/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/APIExplorer/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /src/WP8/Samples/APIExplorer/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/APIExplorer/Resources/AppResources.resx -------------------------------------------------------------------------------- /src/WP8/Samples/APIExplorer/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/APIExplorer/SplashScreenImage.jpg -------------------------------------------------------------------------------- /src/WP8/Samples/BackgroundTransfer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/BackgroundTransfer/App.xaml -------------------------------------------------------------------------------- /src/WP8/Samples/BackgroundTransfer/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/BackgroundTransfer/App.xaml.cs -------------------------------------------------------------------------------- /src/WP8/Samples/BackgroundTransfer/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/BackgroundTransfer/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /src/WP8/Samples/BackgroundTransfer/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/BackgroundTransfer/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /src/WP8/Samples/BackgroundTransfer/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/BackgroundTransfer/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /src/WP8/Samples/BackgroundTransfer/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/BackgroundTransfer/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /src/WP8/Samples/BackgroundTransfer/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/BackgroundTransfer/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /src/WP8/Samples/BackgroundTransfer/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/BackgroundTransfer/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /src/WP8/Samples/BackgroundTransfer/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/BackgroundTransfer/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /src/WP8/Samples/BackgroundTransfer/DownloadPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/BackgroundTransfer/DownloadPage.xaml -------------------------------------------------------------------------------- /src/WP8/Samples/BackgroundTransfer/DownloadPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/BackgroundTransfer/DownloadPage.xaml.cs -------------------------------------------------------------------------------- /src/WP8/Samples/BackgroundTransfer/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/BackgroundTransfer/LocalizedStrings.cs -------------------------------------------------------------------------------- /src/WP8/Samples/BackgroundTransfer/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/BackgroundTransfer/MainPage.xaml -------------------------------------------------------------------------------- /src/WP8/Samples/BackgroundTransfer/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/BackgroundTransfer/MainPage.xaml.cs -------------------------------------------------------------------------------- /src/WP8/Samples/BackgroundTransfer/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/BackgroundTransfer/Properties/AppManifest.xml -------------------------------------------------------------------------------- /src/WP8/Samples/BackgroundTransfer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/BackgroundTransfer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/WP8/Samples/BackgroundTransfer/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/BackgroundTransfer/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /src/WP8/Samples/BackgroundTransfer/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/BackgroundTransfer/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /src/WP8/Samples/BackgroundTransfer/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/BackgroundTransfer/Resources/AppResources.resx -------------------------------------------------------------------------------- /src/WP8/Samples/BackgroundTransfer/SignInPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/BackgroundTransfer/SignInPage.xaml -------------------------------------------------------------------------------- /src/WP8/Samples/BackgroundTransfer/SignInPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/BackgroundTransfer/SignInPage.xaml.cs -------------------------------------------------------------------------------- /src/WP8/Samples/BackgroundTransfer/SkyDriveItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/BackgroundTransfer/SkyDriveItem.cs -------------------------------------------------------------------------------- /src/WP8/Samples/BackgroundTransfer/UploadPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/BackgroundTransfer/UploadPage.xaml -------------------------------------------------------------------------------- /src/WP8/Samples/BackgroundTransfer/UploadPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/BackgroundTransfer/UploadPage.xaml.cs -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/App.xaml -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/App.xaml.cs -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/BrowseSkyDrive.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/BrowseSkyDrive.xaml -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/BrowseSkyDrive.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/BrowseSkyDrive.xaml.cs -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/Error.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/Error.xaml -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/Error.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/Error.xaml.cs -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/Index.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/Index.xaml -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/Index.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/Index.xaml.cs -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/LocalizedStrings.cs -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/MainPage.xaml -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/MainPage.xaml.cs -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/Microsoft.Live.WP8.Samples.CoreConcepts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/Microsoft.Live.WP8.Samples.CoreConcepts.csproj -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/PlayAudio.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/PlayAudio.xaml -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/PlayAudio.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/PlayAudio.xaml.cs -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/PlayVideo.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/PlayVideo.xaml -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/PlayVideo.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/PlayVideo.xaml.cs -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/Properties/AppManifest.xml -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/Resources/AppResources.resx -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/SaveFile.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/SaveFile.xaml -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/SaveFile.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/SaveFile.xaml.cs -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/SkyDriveItemTile.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/SkyDriveItemTile.xaml -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/SkyDriveItemTile.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/SkyDriveItemTile.xaml.cs -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/SplashScreenImage.jpg -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/Upload.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/Upload.xaml -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/Upload.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/Upload.xaml.cs -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/ViewDocument.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/ViewDocument.xaml -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/ViewDocument.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/ViewDocument.xaml.cs -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/ViewFile.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/ViewFile.xaml -------------------------------------------------------------------------------- /src/WP8/Samples/CoreConcepts/ViewFile.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/CoreConcepts/ViewFile.xaml.cs -------------------------------------------------------------------------------- /src/WP8/Samples/LiveLogin/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/LiveLogin/App.xaml -------------------------------------------------------------------------------- /src/WP8/Samples/LiveLogin/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/LiveLogin/App.xaml.cs -------------------------------------------------------------------------------- /src/WP8/Samples/LiveLogin/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/LiveLogin/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /src/WP8/Samples/LiveLogin/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/LiveLogin/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /src/WP8/Samples/LiveLogin/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/LiveLogin/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /src/WP8/Samples/LiveLogin/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/LiveLogin/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /src/WP8/Samples/LiveLogin/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/LiveLogin/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /src/WP8/Samples/LiveLogin/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/LiveLogin/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /src/WP8/Samples/LiveLogin/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/LiveLogin/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /src/WP8/Samples/LiveLogin/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/LiveLogin/LocalizedStrings.cs -------------------------------------------------------------------------------- /src/WP8/Samples/LiveLogin/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/LiveLogin/MainPage.xaml -------------------------------------------------------------------------------- /src/WP8/Samples/LiveLogin/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/LiveLogin/MainPage.xaml.cs -------------------------------------------------------------------------------- /src/WP8/Samples/LiveLogin/Microsoft.Live.WP8.Samples.LiveLogin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/LiveLogin/Microsoft.Live.WP8.Samples.LiveLogin.csproj -------------------------------------------------------------------------------- /src/WP8/Samples/LiveLogin/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/LiveLogin/Properties/AppManifest.xml -------------------------------------------------------------------------------- /src/WP8/Samples/LiveLogin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/LiveLogin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/WP8/Samples/LiveLogin/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/LiveLogin/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /src/WP8/Samples/LiveLogin/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/LiveLogin/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /src/WP8/Samples/LiveLogin/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/LiveLogin/Resources/AppResources.resx -------------------------------------------------------------------------------- /src/WP8/Samples/LiveLogin/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/LiveLogin/SplashScreenImage.jpg -------------------------------------------------------------------------------- /src/WP8/Samples/StreamUploadDownload/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/StreamUploadDownload/App.xaml -------------------------------------------------------------------------------- /src/WP8/Samples/StreamUploadDownload/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/StreamUploadDownload/App.xaml.cs -------------------------------------------------------------------------------- /src/WP8/Samples/StreamUploadDownload/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/StreamUploadDownload/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /src/WP8/Samples/StreamUploadDownload/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/StreamUploadDownload/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /src/WP8/Samples/StreamUploadDownload/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/StreamUploadDownload/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /src/WP8/Samples/StreamUploadDownload/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/StreamUploadDownload/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /src/WP8/Samples/StreamUploadDownload/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/StreamUploadDownload/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /src/WP8/Samples/StreamUploadDownload/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/StreamUploadDownload/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /src/WP8/Samples/StreamUploadDownload/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/StreamUploadDownload/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /src/WP8/Samples/StreamUploadDownload/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/StreamUploadDownload/LocalizedStrings.cs -------------------------------------------------------------------------------- /src/WP8/Samples/StreamUploadDownload/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/StreamUploadDownload/MainPage.xaml -------------------------------------------------------------------------------- /src/WP8/Samples/StreamUploadDownload/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/StreamUploadDownload/MainPage.xaml.cs -------------------------------------------------------------------------------- /src/WP8/Samples/StreamUploadDownload/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/StreamUploadDownload/Properties/AppManifest.xml -------------------------------------------------------------------------------- /src/WP8/Samples/StreamUploadDownload/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/StreamUploadDownload/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/WP8/Samples/StreamUploadDownload/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/StreamUploadDownload/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /src/WP8/Samples/StreamUploadDownload/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/StreamUploadDownload/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /src/WP8/Samples/StreamUploadDownload/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/StreamUploadDownload/Resources/AppResources.resx -------------------------------------------------------------------------------- /src/WP8/Samples/StreamUploadDownload/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Samples/StreamUploadDownload/SplashScreenImage.jpg -------------------------------------------------------------------------------- /src/WP8/Source/Internal/BackgroundDownloadCompletedEventAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Internal/BackgroundDownloadCompletedEventAdapter.cs -------------------------------------------------------------------------------- /src/WP8/Source/Internal/BackgroundDownloadEventAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Internal/BackgroundDownloadEventAdapter.cs -------------------------------------------------------------------------------- /src/WP8/Source/Internal/BackgroundDownloadProgressEventAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Internal/BackgroundDownloadProgressEventAdapter.cs -------------------------------------------------------------------------------- /src/WP8/Source/Internal/BackgroundDownloadRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Internal/BackgroundDownloadRequestBuilder.cs -------------------------------------------------------------------------------- /src/WP8/Source/Internal/BackgroundDownloadResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Internal/BackgroundDownloadResponse.cs -------------------------------------------------------------------------------- /src/WP8/Source/Internal/BackgroundTransferHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Internal/BackgroundTransferHelper.cs -------------------------------------------------------------------------------- /src/WP8/Source/Internal/BackgroundUploadCompletedEventAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Internal/BackgroundUploadCompletedEventAdapter.cs -------------------------------------------------------------------------------- /src/WP8/Source/Internal/BackgroundUploadEventAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Internal/BackgroundUploadEventAdapter.cs -------------------------------------------------------------------------------- /src/WP8/Source/Internal/BackgroundUploadProgressEventAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Internal/BackgroundUploadProgressEventAdapter.cs -------------------------------------------------------------------------------- /src/WP8/Source/Internal/BackgroundUploadRequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Internal/BackgroundUploadRequestBuilder.cs -------------------------------------------------------------------------------- /src/WP8/Source/Internal/BackgroundUploadResponseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Internal/BackgroundUploadResponseHandler.cs -------------------------------------------------------------------------------- /src/WP8/Source/Internal/BackgroundWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Internal/BackgroundWorker.cs -------------------------------------------------------------------------------- /src/WP8/Source/Internal/IBackgroundTransferService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Internal/IBackgroundTransferService.cs -------------------------------------------------------------------------------- /src/WP8/Source/Internal/IBackgroundUploadResponseHandlerObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Internal/IBackgroundUploadResponseHandlerObserver.cs -------------------------------------------------------------------------------- /src/WP8/Source/Internal/IBackgroundWorkerStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Internal/IBackgroundWorkerStrategy.cs -------------------------------------------------------------------------------- /src/WP8/Source/Internal/LiveDownloadOperationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Internal/LiveDownloadOperationResult.cs -------------------------------------------------------------------------------- /src/WP8/Source/Internal/LoginPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Internal/LoginPage.xaml.cs -------------------------------------------------------------------------------- /src/WP8/Source/Internal/Operations/BackgroundDownloadOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Internal/Operations/BackgroundDownloadOperation.cs -------------------------------------------------------------------------------- /src/WP8/Source/Internal/Operations/BackgroundUploadOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Internal/Operations/BackgroundUploadOperation.cs -------------------------------------------------------------------------------- /src/WP8/Source/Internal/PhoneAuthClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Internal/PhoneAuthClient.cs -------------------------------------------------------------------------------- /src/WP8/Source/Internal/PhoneBackgroundTransferService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Internal/PhoneBackgroundTransferService.cs -------------------------------------------------------------------------------- /src/WP8/Source/Internal/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Internal/Platform.cs -------------------------------------------------------------------------------- /src/WP8/Source/Internal/ResourceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Internal/ResourceHelper.cs -------------------------------------------------------------------------------- /src/WP8/Source/Internal/SynchronizationContextWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Internal/SynchronizationContextWrapper.cs -------------------------------------------------------------------------------- /src/WP8/Source/Microsoft.Live.WP8.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Microsoft.Live.WP8.csproj -------------------------------------------------------------------------------- /src/WP8/Source/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/WP8/Source/Public/BackgroundTransferPreferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Public/BackgroundTransferPreferences.cs -------------------------------------------------------------------------------- /src/WP8/Source/Public/LiveAuthClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Public/LiveAuthClient.cs -------------------------------------------------------------------------------- /src/WP8/Source/Public/LiveConnectClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Public/LiveConnectClient.cs -------------------------------------------------------------------------------- /src/WP8/Source/Public/LivePendingDownload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Public/LivePendingDownload.cs -------------------------------------------------------------------------------- /src/WP8/Source/Public/LivePendingUpload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Public/LivePendingUpload.cs -------------------------------------------------------------------------------- /src/WP8/Source/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Resources.Designer.cs -------------------------------------------------------------------------------- /src/WP8/Source/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/Source/Resources.resx -------------------------------------------------------------------------------- /src/WP8/UnitTests/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/App.xaml -------------------------------------------------------------------------------- /src/WP8/UnitTests/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/App.xaml.cs -------------------------------------------------------------------------------- /src/WP8/UnitTests/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /src/WP8/UnitTests/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /src/WP8/UnitTests/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /src/WP8/UnitTests/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /src/WP8/UnitTests/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /src/WP8/UnitTests/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /src/WP8/UnitTests/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /src/WP8/UnitTests/BackgroundDownloadRequestBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/BackgroundDownloadRequestBuilderTest.cs -------------------------------------------------------------------------------- /src/WP8/UnitTests/BackgroundTransferHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/BackgroundTransferHelperTest.cs -------------------------------------------------------------------------------- /src/WP8/UnitTests/BackgroundUploadRequestBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/BackgroundUploadRequestBuilderTest.cs -------------------------------------------------------------------------------- /src/WP8/UnitTests/BackgroundUploadResponseHandlerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/BackgroundUploadResponseHandlerTest.cs -------------------------------------------------------------------------------- /src/WP8/UnitTests/BackgroundWorkerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/BackgroundWorkerTest.cs -------------------------------------------------------------------------------- /src/WP8/UnitTests/Lib/Microsoft.Silverlight.Testing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/Lib/Microsoft.Silverlight.Testing.dll -------------------------------------------------------------------------------- /src/WP8/UnitTests/Lib/Microsoft.Silverlight.Testing.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/Lib/Microsoft.Silverlight.Testing.pdb -------------------------------------------------------------------------------- /src/WP8/UnitTests/Lib/Microsoft.Silverlight.Testing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/Lib/Microsoft.Silverlight.Testing.xml -------------------------------------------------------------------------------- /src/WP8/UnitTests/LiveAuthClientTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/LiveAuthClientTest.cs -------------------------------------------------------------------------------- /src/WP8/UnitTests/LiveConnectClientTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/LiveConnectClientTest.cs -------------------------------------------------------------------------------- /src/WP8/UnitTests/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/LocalizedStrings.cs -------------------------------------------------------------------------------- /src/WP8/UnitTests/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/MainPage.xaml -------------------------------------------------------------------------------- /src/WP8/UnitTests/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/MainPage.xaml.cs -------------------------------------------------------------------------------- /src/WP8/UnitTests/Microsoft.Live.WP8.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/Microsoft.Live.WP8.UnitTests.csproj -------------------------------------------------------------------------------- /src/WP8/UnitTests/Operations/BackgroundDownloadOperationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/Operations/BackgroundDownloadOperationTest.cs -------------------------------------------------------------------------------- /src/WP8/UnitTests/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/Properties/AppManifest.xml -------------------------------------------------------------------------------- /src/WP8/UnitTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/WP8/UnitTests/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /src/WP8/UnitTests/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /src/WP8/UnitTests/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/Resources/AppResources.resx -------------------------------------------------------------------------------- /src/WP8/UnitTests/ServerResponseReaderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/ServerResponseReaderTest.cs -------------------------------------------------------------------------------- /src/WP8/UnitTests/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/SplashScreenImage.jpg -------------------------------------------------------------------------------- /src/WP8/UnitTests/Stubs/MockBackgroundTransferService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/Stubs/MockBackgroundTransferService.cs -------------------------------------------------------------------------------- /src/WP8/UnitTests/Stubs/MockBackgroundUploadResponseHandlerObserver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/Stubs/MockBackgroundUploadResponseHandlerObserver.cs -------------------------------------------------------------------------------- /src/WP8/UnitTests/Stubs/MockBackgroundWorkerStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/Stubs/MockBackgroundWorkerStrategy.cs -------------------------------------------------------------------------------- /src/WP8/UnitTests/Stubs/TestAuthClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/Stubs/TestAuthClient.cs -------------------------------------------------------------------------------- /src/WP8/UnitTests/TestCases.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WP8/UnitTests/TestCases.cs -------------------------------------------------------------------------------- /src/Web/Local.testsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Local.testsettings -------------------------------------------------------------------------------- /src/Web/Microsoft.Live.Web.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Microsoft.Live.Web.sln -------------------------------------------------------------------------------- /src/Web/Microsoft.Live.Web.vsmdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Microsoft.Live.Web.vsmdi -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Content/Site.css -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery-ui.css -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery.ui.accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery.ui.accordion.css -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery.ui.all.css -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery.ui.autocomplete.css -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery.ui.base.css -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery.ui.button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery.ui.button.css -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery.ui.core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery.ui.core.css -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery.ui.datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery.ui.datepicker.css -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery.ui.dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery.ui.dialog.css -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery.ui.progressbar.css -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery.ui.resizable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery.ui.resizable.css -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery.ui.selectable.css -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery.ui.slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery.ui.slider.css -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery.ui.tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery.ui.tabs.css -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery.ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Content/themes/base/jquery.ui.theme.css -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Content/themes/base/minified/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Content/themes/base/minified/jquery-ui.min.css -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Controllers/AccountController.cs -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Global.asax -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Global.asax.cs -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Models/AccountDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Models/AccountDataModel.cs -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Models/JSClientModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Models/JSClientModel.cs -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Models/LoggedOutModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Models/LoggedOutModel.cs -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Scripts/_references.js -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Scripts/jquery-1.7.1.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Scripts/jquery-1.7.1.intellisense.js -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Scripts/jquery-1.7.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Scripts/jquery-1.7.1.js -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Scripts/jquery-1.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Scripts/jquery-1.7.1.min.js -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Scripts/jquery-ui-1.8.20.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Scripts/jquery-ui-1.8.20.js -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Scripts/jquery-ui-1.8.20.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Scripts/jquery-ui-1.8.20.min.js -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Scripts/jquery.unobtrusive-ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Scripts/jquery.unobtrusive-ajax.js -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Scripts/jquery.unobtrusive-ajax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Scripts/jquery.unobtrusive-ajax.min.js -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Scripts/knockout-2.1.0.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Scripts/knockout-2.1.0.debug.js -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Scripts/knockout-2.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Scripts/knockout-2.1.0.js -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Scripts/modernizr-2.5.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Scripts/modernizr-2.5.3.js -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Views/Account/AccountData.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Views/Account/AccountData.cshtml -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Views/Account/AjaxCallback.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Views/Account/AjaxCallback.cshtml -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Views/Account/AjaxClient.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Views/Account/AjaxClient.cshtml -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Views/Account/LoggedOut.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Views/Account/LoggedOut.cshtml -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Views/Web.config -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Web.Debug.config -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Web.Release.config -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/Web.config -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/bin/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/bin/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/bin/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/bin/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/bin/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/bin/System.Web.Optimization.dll -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/bin/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/bin/WebGrease.dll -------------------------------------------------------------------------------- /src/Web/Samples/AuthWithMSAccount/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/AuthWithMSAccount/packages.config -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/App_Start/AuthConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/App_Start/AuthConfig.cs -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Content/Site.css -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Content/themes/base/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Content/themes/base/jquery-ui.css -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Controllers/AccountController.cs -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Global.asax -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Global.asax.cs -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Images/accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Images/accent.png -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Images/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Images/bullet.png -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Images/heroAccent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Images/heroAccent.png -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Images/orderedList0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Images/orderedList0.png -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Images/orderedList1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Images/orderedList1.png -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Images/orderedList2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Images/orderedList2.png -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Images/orderedList3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Images/orderedList3.png -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Images/orderedList4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Images/orderedList4.png -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Images/orderedList5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Images/orderedList5.png -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Images/orderedList6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Images/orderedList6.png -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Images/orderedList7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Images/orderedList7.png -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Images/orderedList8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Images/orderedList8.png -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Images/orderedList9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Images/orderedList9.png -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Models/AccountModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Models/AccountModels.cs -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Scripts/_references.js -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Scripts/jquery-1.7.1-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Scripts/jquery-1.7.1-vsdoc.js -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Scripts/jquery-1.7.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Scripts/jquery-1.7.1.js -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Scripts/jquery-1.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Scripts/jquery-1.7.1.min.js -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Scripts/jquery-ui-1.8.20.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Scripts/jquery-ui-1.8.20.js -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Scripts/jquery-ui-1.8.20.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Scripts/jquery-ui-1.8.20.min.js -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Scripts/jquery.unobtrusive-ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Scripts/jquery.unobtrusive-ajax.js -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Scripts/knockout-2.1.0.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Scripts/knockout-2.1.0.debug.js -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Scripts/knockout-2.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Scripts/knockout-2.1.0.js -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Scripts/modernizr-2.5.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Scripts/modernizr-2.5.3.js -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Views/Account/AjaxCallback.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Views/Account/AjaxCallback.cshtml -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Views/Account/AjaxClient.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Views/Account/AjaxClient.cshtml -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Views/Account/MSAccountPage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Views/Account/MSAccountPage.cshtml -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Views/Account/Manage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Views/Account/Manage.cshtml -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Views/Home/About.cshtml -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Views/Web.config -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Web.Debug.config -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Web.Release.config -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/Web.config -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/bin/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/bin/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/bin/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/bin/EntityFramework.dll -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/bin/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/bin/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/bin/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/bin/System.Web.Optimization.dll -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/bin/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/bin/WebGrease.dll -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/favicon.ico -------------------------------------------------------------------------------- /src/Web/Samples/ConnectAppUserWithMSAccount/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/ConnectAppUserWithMSAccount/packages.config -------------------------------------------------------------------------------- /src/Web/Samples/OAuthServer/Asp.net/OAuthSample/App_Code/JsonWebToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/OAuthServer/Asp.net/OAuthSample/App_Code/JsonWebToken.cs -------------------------------------------------------------------------------- /src/Web/Samples/OAuthServer/Asp.net/OAuthSample/App_Code/OAuthConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/OAuthServer/Asp.net/OAuthSample/App_Code/OAuthConstants.cs -------------------------------------------------------------------------------- /src/Web/Samples/OAuthServer/Asp.net/OAuthSample/App_Code/OAuthError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/OAuthServer/Asp.net/OAuthSample/App_Code/OAuthError.cs -------------------------------------------------------------------------------- /src/Web/Samples/OAuthServer/Asp.net/OAuthSample/App_Code/OAuthToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/OAuthServer/Asp.net/OAuthSample/App_Code/OAuthToken.cs -------------------------------------------------------------------------------- /src/Web/Samples/OAuthServer/Asp.net/OAuthSample/Callback.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/OAuthServer/Asp.net/OAuthSample/Callback.aspx -------------------------------------------------------------------------------- /src/Web/Samples/OAuthServer/Asp.net/OAuthSample/Callback.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/OAuthServer/Asp.net/OAuthSample/Callback.aspx.cs -------------------------------------------------------------------------------- /src/Web/Samples/OAuthServer/Asp.net/OAuthSample/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/OAuthServer/Asp.net/OAuthSample/default.html -------------------------------------------------------------------------------- /src/Web/Samples/OAuthServer/Asp.net/OAuthSample/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/OAuthServer/Asp.net/OAuthSample/readme.txt -------------------------------------------------------------------------------- /src/Web/Samples/OAuthServer/PHP/OauthSample/callback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/OAuthServer/PHP/OauthSample/callback.php -------------------------------------------------------------------------------- /src/Web/Samples/OAuthServer/PHP/OauthSample/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/OAuthServer/PHP/OauthSample/default.html -------------------------------------------------------------------------------- /src/Web/Samples/OAuthServer/PHP/OauthSample/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Samples/OAuthServer/PHP/OauthSample/readme.txt -------------------------------------------------------------------------------- /src/Web/Source/Internal/LiveAuthClientCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Source/Internal/LiveAuthClientCore.cs -------------------------------------------------------------------------------- /src/Web/Source/Internal/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Source/Internal/Platform.cs -------------------------------------------------------------------------------- /src/Web/Source/Internal/Utilities/HttpContextUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Source/Internal/Utilities/HttpContextUtility.cs -------------------------------------------------------------------------------- /src/Web/Source/Internal/Utilities/JsonWebToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Source/Internal/Utilities/JsonWebToken.cs -------------------------------------------------------------------------------- /src/Web/Source/Internal/Utilities/JsonWebTokenClaims.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Source/Internal/Utilities/JsonWebTokenClaims.cs -------------------------------------------------------------------------------- /src/Web/Source/Internal/Utilities/JsonWebTokenEnvelope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Source/Internal/Utilities/JsonWebTokenEnvelope.cs -------------------------------------------------------------------------------- /src/Web/Source/Internal/Utilities/LiveAuthWebUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Source/Internal/Utilities/LiveAuthWebUtility.cs -------------------------------------------------------------------------------- /src/Web/Source/Microsoft.Live.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Source/Microsoft.Live.Web.csproj -------------------------------------------------------------------------------- /src/Web/Source/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Source/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Web/Source/Public/LiveAuthClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Source/Public/LiveAuthClient.cs -------------------------------------------------------------------------------- /src/Web/Source/Public/LiveConnectClientExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Source/Public/LiveConnectClientExt.cs -------------------------------------------------------------------------------- /src/Web/Source/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/Source/packages.config -------------------------------------------------------------------------------- /src/Web/TraceAndTestImpact.testsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/TraceAndTestImpact.testsettings -------------------------------------------------------------------------------- /src/Web/UnitTests/LiveAuthClientUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/UnitTests/LiveAuthClientUnitTests.cs -------------------------------------------------------------------------------- /src/Web/UnitTests/LiveAuthUtilityUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/UnitTests/LiveAuthUtilityUnitTests.cs -------------------------------------------------------------------------------- /src/Web/UnitTests/LiveAuthWebUtilityUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/UnitTests/LiveAuthWebUtilityUnitTests.cs -------------------------------------------------------------------------------- /src/Web/UnitTests/LiveUtilityUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/UnitTests/LiveUtilityUnitTests.cs -------------------------------------------------------------------------------- /src/Web/UnitTests/Microsoft.Live.Web.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/UnitTests/Microsoft.Live.Web.UnitTests.csproj -------------------------------------------------------------------------------- /src/Web/UnitTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/Web/UnitTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/WinStore/Microsoft.Live.WinStore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Microsoft.Live.WinStore.sln -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/LiveSDKJavaScriptLab.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/LiveSDKJavaScriptLab.sln -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/apiservices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/apiservices.html -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/auth.html -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/css/apiservices.css: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/css/auth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/css/auth.css -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/css/default.css -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/css/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/css/header.css -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/css/onedrive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/css/onedrive.css -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/css/share.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/css/share.css -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/css/signincontrol.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/css/signincontrol.css -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/default.html -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/header.html -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/images/live-sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/images/live-sdk.png -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/images/logo.png -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/images/smalllogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/images/smalllogo.png -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/images/splashscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/images/splashscreen.png -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/images/storelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/images/storelogo.png -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/images/windowslive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/images/windowslive.png -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/js/apiservices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/js/apiservices.js -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/js/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/js/auth.js -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/js/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/js/default.js -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/js/onedrive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/js/onedrive.js -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/js/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/js/output.js -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/js/share.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/js/share.js -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/onedrive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/onedrive.html -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/output.html -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/LiveSDKJavaScriptLab/package.appxmanifest -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/PhotoSky/PhotoSkyJavaScript.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/PhotoSky/PhotoSkyJavaScript.sln -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/PhotoSky/PhotoSkyJavaScript/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/PhotoSky/PhotoSkyJavaScript/css/default.css -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/PhotoSky/PhotoSkyJavaScript/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/PhotoSky/PhotoSkyJavaScript/default.html -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/PhotoSky/PhotoSkyJavaScript/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/PhotoSky/PhotoSkyJavaScript/images/logo.png -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/PhotoSky/PhotoSkyJavaScript/js/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/PhotoSky/PhotoSkyJavaScript/js/data.js -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/PhotoSky/PhotoSkyJavaScript/js/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/PhotoSky/PhotoSkyJavaScript/js/default.js -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/HTML/PhotoSky/PhotoSkyJavaScript/js/navigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/HTML/PhotoSky/PhotoSkyJavaScript/js/navigator.js -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/APIExplorer/APIExplorer_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/APIExplorer/APIExplorer_TemporaryKey.pfx -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/APIExplorer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/APIExplorer/App.xaml -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/APIExplorer/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/APIExplorer/App.xaml.cs -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/APIExplorer/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/APIExplorer/Assets/Logo.png -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/APIExplorer/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/APIExplorer/Assets/SmallLogo.png -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/APIExplorer/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/APIExplorer/Assets/SplashScreen.png -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/APIExplorer/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/APIExplorer/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/APIExplorer/Common/StandardStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/APIExplorer/Common/StandardStyles.xaml -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/APIExplorer/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/APIExplorer/MainPage.xaml -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/APIExplorer/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/APIExplorer/MainPage.xaml.cs -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/APIExplorer/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/APIExplorer/Package.appxmanifest -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/APIExplorer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/APIExplorer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/FileUploadDownload/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/FileUploadDownload/App.xaml -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/FileUploadDownload/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/FileUploadDownload/App.xaml.cs -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/FileUploadDownload/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/FileUploadDownload/Assets/Logo.png -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/FileUploadDownload/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/FileUploadDownload/Assets/SmallLogo.png -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/FileUploadDownload/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/FileUploadDownload/Assets/SplashScreen.png -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/FileUploadDownload/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/FileUploadDownload/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/FileUploadDownload/Common/StandardStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/FileUploadDownload/Common/StandardStyles.xaml -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/FileUploadDownload/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/FileUploadDownload/MainPage.xaml -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/FileUploadDownload/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/FileUploadDownload/MainPage.xaml.cs -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/FileUploadDownload/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/FileUploadDownload/Package.appxmanifest -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/FileUploadDownload/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/FileUploadDownload/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp.sln -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/App.xaml -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/App.xaml.cs -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/Assets/BackArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/Assets/BackArrow.png -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/Assets/DarkGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/Assets/DarkGray.png -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/Assets/LightGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/Assets/LightGray.png -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/Assets/Logo.png -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/Assets/MediumGray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/Assets/MediumGray.png -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/Assets/SkyDrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/Assets/SkyDrive.png -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/Assets/SmallLogo.png -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/Common/BindableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/Common/BindableBase.cs -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/Common/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/Common/ReadMe.txt -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/GroupDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/GroupDetailPage.xaml -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/GroupedItemsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/GroupedItemsPage.xaml -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/ItemDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/ItemDetailPage.xaml -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/ItemDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/ItemDetailPage.xaml.cs -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/Package.appxmanifest -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/PhotoSkyCSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/PhotoSky/PhotoSkyCSharp/PhotoSkyCSharp.csproj -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/StreamUploadDownload/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/StreamUploadDownload/App.xaml -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/StreamUploadDownload/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/StreamUploadDownload/App.xaml.cs -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/StreamUploadDownload/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/StreamUploadDownload/Assets/Logo.png -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/StreamUploadDownload/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/StreamUploadDownload/Assets/SmallLogo.png -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/StreamUploadDownload/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/StreamUploadDownload/Assets/SplashScreen.png -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/StreamUploadDownload/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/StreamUploadDownload/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/StreamUploadDownload/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/StreamUploadDownload/MainPage.xaml -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/StreamUploadDownload/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/StreamUploadDownload/MainPage.xaml.cs -------------------------------------------------------------------------------- /src/WinStore/Samples/Windows/XAML/StreamUploadDownload/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/Windows/XAML/StreamUploadDownload/Package.appxmanifest -------------------------------------------------------------------------------- /src/WinStore/Samples/WindowsPhone/HTML/LiveSDKJavaScriptPhoneSample/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/WindowsPhone/HTML/LiveSDKJavaScriptPhoneSample/default.html -------------------------------------------------------------------------------- /src/WinStore/Samples/WindowsPhone/XAML/LiveSDKPhoneRTSample/ApiLab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/WindowsPhone/XAML/LiveSDKPhoneRTSample/ApiLab.xaml -------------------------------------------------------------------------------- /src/WinStore/Samples/WindowsPhone/XAML/LiveSDKPhoneRTSample/ApiLab.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/WindowsPhone/XAML/LiveSDKPhoneRTSample/ApiLab.xaml.cs -------------------------------------------------------------------------------- /src/WinStore/Samples/WindowsPhone/XAML/LiveSDKPhoneRTSample/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/WindowsPhone/XAML/LiveSDKPhoneRTSample/App.xaml -------------------------------------------------------------------------------- /src/WinStore/Samples/WindowsPhone/XAML/LiveSDKPhoneRTSample/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/WindowsPhone/XAML/LiveSDKPhoneRTSample/App.xaml.cs -------------------------------------------------------------------------------- /src/WinStore/Samples/WindowsPhone/XAML/LiveSDKPhoneRTSample/Assets/logo44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/WindowsPhone/XAML/LiveSDKPhoneRTSample/Assets/logo44.png -------------------------------------------------------------------------------- /src/WinStore/Samples/WindowsPhone/XAML/LiveSDKPhoneRTSample/Assets/logo71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/WindowsPhone/XAML/LiveSDKPhoneRTSample/Assets/logo71.png -------------------------------------------------------------------------------- /src/WinStore/Samples/WindowsPhone/XAML/LiveSDKPhoneRTSample/Assets/mslogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/WindowsPhone/XAML/LiveSDKPhoneRTSample/Assets/mslogo.png -------------------------------------------------------------------------------- /src/WinStore/Samples/WindowsPhone/XAML/LiveSDKPhoneRTSample/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/WindowsPhone/XAML/LiveSDKPhoneRTSample/MainPage.xaml -------------------------------------------------------------------------------- /src/WinStore/Samples/WindowsPhone/XAML/LiveSDKPhoneRTSample/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Samples/WindowsPhone/XAML/LiveSDKPhoneRTSample/MainPage.xaml.cs -------------------------------------------------------------------------------- /src/WinStore/Source/Internal/HttpUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Source/Internal/HttpUtility.cs -------------------------------------------------------------------------------- /src/WinStore/Source/Internal/LoginResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Source/Internal/LoginResult.cs -------------------------------------------------------------------------------- /src/WinStore/Source/Internal/Operations/CreateBackgroundDownloadOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Source/Internal/Operations/CreateBackgroundDownloadOperation.cs -------------------------------------------------------------------------------- /src/WinStore/Source/Internal/Operations/CreateBackgroundUploadOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Source/Internal/Operations/CreateBackgroundUploadOperation.cs -------------------------------------------------------------------------------- /src/WinStore/Source/Internal/Operations/TailoredDownloadOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Source/Internal/Operations/TailoredDownloadOperation.cs -------------------------------------------------------------------------------- /src/WinStore/Source/Internal/Operations/TailoredUploadOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Source/Internal/Operations/TailoredUploadOperation.cs -------------------------------------------------------------------------------- /src/WinStore/Source/Internal/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Source/Internal/Platform.cs -------------------------------------------------------------------------------- /src/WinStore/Source/Internal/ResourceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Source/Internal/ResourceHelper.cs -------------------------------------------------------------------------------- /src/WinStore/Source/Internal/SynchronizationContextWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Source/Internal/SynchronizationContextWrapper.cs -------------------------------------------------------------------------------- /src/WinStore/Source/Internal/TailoredAuthClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Source/Internal/TailoredAuthClient.cs -------------------------------------------------------------------------------- /src/WinStore/Source/Microsoft.Live.WPRTSL.CoreXT.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Source/Microsoft.Live.WPRTSL.CoreXT.csproj -------------------------------------------------------------------------------- /src/WinStore/Source/Microsoft.Live.WinStore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Source/Microsoft.Live.WinStore.csproj -------------------------------------------------------------------------------- /src/WinStore/Source/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Source/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/WinStore/Source/Public/LiveAuthClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Source/Public/LiveAuthClient.cs -------------------------------------------------------------------------------- /src/WinStore/Source/Public/LiveConnectClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Source/Public/LiveConnectClientExtensions.cs -------------------------------------------------------------------------------- /src/WinStore/Source/Public/LiveDownloadOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Source/Public/LiveDownloadOperation.cs -------------------------------------------------------------------------------- /src/WinStore/Source/Public/LiveDownloadOperationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Source/Public/LiveDownloadOperationResult.cs -------------------------------------------------------------------------------- /src/WinStore/Source/Public/LiveUploadOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Source/Public/LiveUploadOperation.cs -------------------------------------------------------------------------------- /src/WinStore/Source/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Source/Resources.Designer.cs -------------------------------------------------------------------------------- /src/WinStore/Source/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Source/Resources.resw -------------------------------------------------------------------------------- /src/WinStore/Source/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Source/Resources.resx -------------------------------------------------------------------------------- /src/WinStore/Source/SDKManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/Source/SDKManifest.xml -------------------------------------------------------------------------------- /src/WinStore/UnitTests/Images/UnitTestLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/UnitTests/Images/UnitTestLogo.png -------------------------------------------------------------------------------- /src/WinStore/UnitTests/Images/UnitTestSmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/UnitTests/Images/UnitTestSmallLogo.png -------------------------------------------------------------------------------- /src/WinStore/UnitTests/Images/UnitTestSplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/UnitTests/Images/UnitTestSplashScreen.png -------------------------------------------------------------------------------- /src/WinStore/UnitTests/Images/UnitTestStoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/UnitTests/Images/UnitTestStoreLogo.png -------------------------------------------------------------------------------- /src/WinStore/UnitTests/LiveAuthClientTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/UnitTests/LiveAuthClientTest.cs -------------------------------------------------------------------------------- /src/WinStore/UnitTests/LiveConnectClientTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/UnitTests/LiveConnectClientTest.cs -------------------------------------------------------------------------------- /src/WinStore/UnitTests/Microsoft.Live.UnitTests.Win8_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/UnitTests/Microsoft.Live.UnitTests.Win8_TemporaryKey.pfx -------------------------------------------------------------------------------- /src/WinStore/UnitTests/Microsoft.Live.WinStore.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/UnitTests/Microsoft.Live.WinStore.UnitTests.csproj -------------------------------------------------------------------------------- /src/WinStore/UnitTests/Operations/TailoredDownloadOperationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/UnitTests/Operations/TailoredDownloadOperationTest.cs -------------------------------------------------------------------------------- /src/WinStore/UnitTests/Operations/TailoredUploadOperationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/UnitTests/Operations/TailoredUploadOperationTest.cs -------------------------------------------------------------------------------- /src/WinStore/UnitTests/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/UnitTests/Package.appxmanifest -------------------------------------------------------------------------------- /src/WinStore/UnitTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/UnitTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/WinStore/UnitTests/Stubs/StorageFileStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/UnitTests/Stubs/StorageFileStub.cs -------------------------------------------------------------------------------- /src/WinStore/UnitTests/Stubs/TestAuthClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liveservices/LiveSDK-for-Windows/HEAD/src/WinStore/UnitTests/Stubs/TestAuthClient.cs --------------------------------------------------------------------------------