This commit is contained in:
Oren Novotny 2017-08-27 10:40:17 -04:00
Родитель 4f8029f351
Коммит 8045b2b98a
6 изменённых файлов: 30 добавлений и 393 удалений

Просмотреть файл

@ -36,6 +36,10 @@
<ItemGroup Condition="'$(IsUwpProject)' == 'true'">
<PackageReference Include="MSBuild.Sdk.Extras" Version="1.0.7" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="**\*.rd.xml" />
</ItemGroup>
<PropertyGroup>
<NerdbankGitVersioningVersion>2.0.37-beta</NerdbankGitVersioningVersion>

Просмотреть файл

@ -1,250 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{7189A42D-6F1A-4FA3-8E00-E2C14FDF167A}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Microsoft.Toolkit.Uwp.Services</RootNamespace>
<AssemblyName>Microsoft.Toolkit.Uwp.Services</AssemblyName>
<DefaultLanguage>en-US</DefaultLanguage>
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
<TargetPlatformVersion>10.0.15063.0</TargetPlatformVersion>
<TargetPlatformMinVersion>10.0.14393.0</TargetPlatformMinVersion>
<MinimumVisualStudioVersion>14</MinimumVisualStudioVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodeAnalysisRuleSet>microsoft.toolkit.uwp.services.ruleset</CodeAnalysisRuleSet>
<DocumentationFile>bin\Debug\Microsoft.Toolkit.Uwp.Services.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Release\Microsoft.Toolkit.Uwp.Services.xml</DocumentationFile>
<CodeAnalysisRuleSet>microsoft.toolkit.uwp.services.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup>
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
<TargetFramework>uap10.0</TargetFramework>
<Title>UWP Community Toolkit Services</Title>
<Description>This library enables access to different data sources like Bing, Facebook, LinkedIn, MicrosoftGraph, OneDrive and Twitter. It is part of the UWP Community Toolkit.</Description>
<PackageTags>UWP Toolkit Windows Twitter OAuth Facebook Bing MicrosoftGraph LinkedIn OneDrive</PackageTags>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform">
<Version>5.3.4</Version>
</PackageReference>
<PackageReference Include="StyleCop.Analyzers">
<Version>1.0.2</Version>
</PackageReference>
<PackageReference Include="Microsoft.Graph">
<Version>1.2.0</Version>
</PackageReference>
<PackageReference Include="Microsoft.IdentityModel.Clients.ActiveDirectory">
<Version>3.13.7</Version>
</PackageReference>
<PackageReference Include="Microsoft.OneDriveSDK">
<Version>2.0.6</Version>
</PackageReference>
<PackageReference Include="Microsoft.OneDriveSDK.Authentication">
<Version>1.0.8</Version>
</PackageReference>
<PackageReference Include="winsdkfb">
<Version>0.12.20161020.4</Version>
</PackageReference>
<PackageReference Include="Microsoft.Graph" Version="1.2.0" />
<PackageReference Include="Microsoft.IdentityModel.Clients.ActiveDirectory" Version="3.13.7" />
<PackageReference Include="Microsoft.OneDriveSDK" Version="2.0.6" />
<PackageReference Include="Microsoft.OneDriveSDK.Authentication" Version="1.0.8" />
<PackageReference Include="winsdkfb" Version="0.12.20161020.4" />
<!-- This is here to prevent a conflict in certain circumstances -->
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
<ProjectReference Include="..\Microsoft.Toolkit.Services\Microsoft.Toolkit.Services.csproj" />
<ProjectReference Include="..\Microsoft.Toolkit.Uwp\Microsoft.Toolkit.Uwp.csproj" />
</ItemGroup>
<ItemGroup>
<!-- A reference to the entire .Net Framework and Windows SDK are automatically included -->
<None Include="Microsoft.Toolkit.Uwp.Services.ruleset">
<SubType>Designer</SubType>
</None>
</ItemGroup>
<ItemGroup>
<Compile Include="Core\DataProviderBase{TConfig,TSchema}.cs" />
<Compile Include="Core\ExtensionMethods.cs" />
<Compile Include="Core\IDataService{T,U,V}.cs" />
<Compile Include="Services\MicrosoftTranslator\ServiceLanguage.cs" />
<Compile Include="Services\Twitter\TwitterStreamCallbacks.cs" />
<Compile Include="Services\Bing\BingLanguage.cs" />
<Compile Include="Services\Bing\BingCountry.cs" />
<Compile Include="Services\Bing\BingResult.cs" />
<Compile Include="Services\Bing\BingQueryType.cs" />
<Compile Include="Services\Bing\BingSearchConfig.cs" />
<Compile Include="Services\Bing\BingDataProvider.cs" />
<Compile Include="Services\Bing\BingParser.cs" />
<Compile Include="Services\Bing\BingService.cs" />
<Compile Include="Services\Facebook\FacebookAlbum.cs" />
<Compile Include="Services\Facebook\FacebookOAuthTokens.cs" />
<Compile Include="Services\Facebook\FacebookRequestSource.cs" />
<Compile Include="Services\LinkedIn\LinkedInConstants.cs" />
<Compile Include="Services\LinkedIn\LinkedInContent.cs" />
<Compile Include="Services\LinkedIn\LinkedInDataConfig.cs" />
<Compile Include="Services\LinkedIn\LinkedInDataProvider.cs" />
<Compile Include="Services\LinkedIn\LinkedInOAuthTokens.cs" />
<Compile Include="Services\LinkedIn\LinkedInParser.cs" />
<Compile Include="Services\LinkedIn\LinkedInPermissions.cs" />
<Compile Include="Services\LinkedIn\LinkedInProfile.cs" />
<Compile Include="Services\LinkedIn\LinkedInProfileRequest.cs" />
<Compile Include="Services\LinkedIn\LinkedInService.cs" />
<Compile Include="Services\LinkedIn\LinkedInShareResponse.cs" />
<Compile Include="Services\LinkedIn\LinkedInShareVisibility.cs" />
<Compile Include="Services\LinkedIn\LinkedInShareRequest.cs" />
<Compile Include="Services\LinkedIn\LinkedInVisibility.cs" />
<Compile Include="Services\MicrosoftGraph\JWToken.cs" />
<Compile Include="Services\MicrosoftGraph\Events\MicrosoftGraphEventFields.cs" />
<Compile Include="Services\MicrosoftGraph\Events\MicrosoftGraphServiceEvent.cs" />
<Compile Include="Services\MicrosoftGraph\MicrosoftGraphAuthenticationHelper.cs" />
<Compile Include="Services\MicrosoftGraph\MicrosoftGraphEnums.cs" />
<Compile Include="Services\MicrosoftGraph\MicrosoftGraphHelper.cs" />
<Compile Include="Services\MicrosoftGraph\MicrosoftGraphCoreService.cs" />
<Compile Include="Services\MicrosoftGraph\MicrosoftGraphExtensions.cs" />
<Compile Include="Services\MicrosoftGraph\Message\MicrosoftGraphMessageFields.cs" />
<Compile Include="Services\MicrosoftGraph\Message\MicrosoftGraphServiceMessage.cs" />
<Compile Include="Services\MicrosoftGraph\User\MicrosoftGraphUserFields.cs" />
<Compile Include="Services\MicrosoftGraph\User\MicrosoftGraphUserService.cs" />
<Compile Include="Services\Facebook\FacebookPhoto.cs" />
<Compile Include="Services\Facebook\FacebookPictureData.cs" />
<Compile Include="Services\Facebook\FacebookPlatformImageSource.cs" />
<Compile Include="Services\MicrosoftTranslator\ErrorResponse.cs" />
<Compile Include="Services\MicrosoftTranslator\TranslatorServiceException.cs" />
<Compile Include="Services\OneDrive\DiscoverySettings.cs" />
<Compile Include="Services\OneDrive\OneDriveAuthenticationHelper.cs" />
<Compile Include="Services\OneDrive\OneDriveConflictItem.cs" />
<Compile Include="Services\OneDrive\OneDriveConstants.cs" />
<Compile Include="Services\OneDrive\OneDriveHelper.cs" />
<Compile Include="Services\OneDrive\OneDriveItem.cs" />
<Compile Include="Services\OneDrive\OneDriveEnums.cs" />
<Compile Include="Services\OneDrive\OneDriveItemConflictBehavior.cs" />
<Compile Include="Services\OneDrive\OneDriveItemExtension.cs" />
<Compile Include="Services\OneDrive\OneDriveParent.cs" />
<Compile Include="Services\OneDrive\OneDriveParentReference.cs" />
<Compile Include="Services\OneDrive\OneDriveRequestSource.cs" />
<Compile Include="Services\OneDrive\OneDriveScopes.cs" />
<Compile Include="Services\OneDrive\OneDriveService.cs" />
<Compile Include="Services\OneDrive\OneDriveStorageFile.cs" />
<Compile Include="Services\OneDrive\OneDriveStorageFolder.cs" />
<Compile Include="Services\OneDrive\OneDriveStorageItem.cs" />
<Compile Include="Services\OneDrive\OneDriveStorageItemsCollection.cs" />
<Compile Include="Services\OneDrive\OneDriveStorageItemsEnumerator.cs" />
<Compile Include="Services\MicrosoftTranslator\AzureAuthToken.cs" />
<Compile Include="Services\MicrosoftTranslator\ITranslatorService.cs" />
<Compile Include="Services\MicrosoftTranslator\TranslatorService.cs" />
<Compile Include="Services\OneDrive\OneDriveThumbnailSet.cs" />
<Compile Include="Services\OneDrive\OneDriveUploadConstants.cs" />
<Compile Include="Services\OneDrive\UserInfoSettings.cs" />
<Compile Include="Services\Twitter\TwitterStreamDeletedEvent.cs" />
<Compile Include="Services\Twitter\TwitterStreamEventType.cs" />
<Compile Include="Services\Twitter\TwitterStreamEvent.cs" />
<Compile Include="Services\Twitter\TwitterDirectMessage.cs" />
<Compile Include="Services\Twitter\ITwitterResult.cs" />
<Compile Include="Services\Twitter\TwitterUserStreamParser.cs" />
<Compile Include="Services\Twitter\TwitterEntities.cs" />
<Compile Include="Services\Twitter\TwitterErrors.cs" />
<Compile Include="Services\Twitter\TwitterException.cs" />
<Compile Include="Services\Twitter\TwitterMedia.cs" />
<Compile Include="Services\Twitter\TwitterGeoData.cs" />
<Compile Include="Services\Twitter\TwitterOAuthTokenType.cs" />
<Compile Include="Services\Facebook\FacebookPermissions.cs" />
<Compile Include="Services\Facebook\FacebookDataHost.cs" />
<Compile Include="Services\Facebook\FacebookPicture.cs" />
<Compile Include="Services\Facebook\FacebookPost.cs" />
<Compile Include="Services\Facebook\FacebookService.cs" />
<Compile Include="Services\Twitter\TweetParser.cs" />
<Compile Include="Services\Twitter\TwitterService.cs" />
<Compile Include="Core\InternalExtensionMethods.cs" />
<Compile Include="Core\JsonParser.cs" />
<Compile Include="Core\StringValueAttribute.cs" />
<Compile Include="Core\DataProviderBase.cs" />
<Compile Include="Exceptions\ParserNullException.cs" />
<Compile Include="Exceptions\ConfigNullException.cs" />
<Compile Include="Exceptions\OAuthKeysRevokedException.cs" />
<Compile Include="Exceptions\RequestFailedException.cs" />
<Compile Include="Exceptions\TooManyRequestsException.cs" />
<Compile Include="Exceptions\UserNotFoundException.cs" />
<Compile Include="Services\Facebook\FacebookDataConfig.cs" />
<Compile Include="Core\IParser.cs" />
<Compile Include="Rss\AtomParser.cs" />
<Compile Include="Rss\BaseRssParser.cs" />
<Compile Include="Rss\Rss2Parser.cs" />
<Compile Include="Rss\RssHelper.cs" />
<Compile Include="Rss\RssParser.cs" />
<Compile Include="Rss\RssSchema.cs" />
<Compile Include="Rss\RssType.cs" />
<Compile Include="OAuth\OAuthEncoder.cs" />
<Compile Include="OAuth\OAuthParameter.cs" />
<Compile Include="Services\Twitter\TwitterOAuthRequest.cs" />
<Compile Include="Services\Twitter\TwitterOAuthRequestBuilder.cs" />
<Compile Include="OAuth\OAuthUriExtensions.cs" />
<Compile Include="Services\Twitter\TwitterOAuthTokens.cs" />
<Compile Include="Services\Twitter\TwitterDataConfig.cs" />
<Compile Include="Services\Twitter\TwitterDataProvider.cs" />
<Compile Include="Services\Twitter\TwitterQueryType.cs" />
<Compile Include="Exceptions\OAuthKeysNotPresentException.cs" />
<Compile Include="Exceptions\ConfigParameterNullException.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Core\SchemaBase.cs" />
<Compile Include="Services\Twitter\TwitterSearchParser.cs" />
<Compile Include="Services\Twitter\TwitterSearchResult.cs" />
<Compile Include="Services\Twitter\Tweet.cs" />
<Compile Include="Services\Twitter\TwitterError.cs" />
<Compile Include="Services\Twitter\TwitterStatus.cs" />
<Compile Include="Services\Twitter\TwitterUrl.cs" />
<Compile Include="Services\Twitter\TwitterUser.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Properties\Microsoft.Toolkit.Uwp.Services.rd.xml" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Microsoft.Toolkit.Services\Microsoft.Toolkit.Services.csproj">
<Project>{34398053-fc70-4243-84f9-f355defff66d}</Project>
<Name>Microsoft.Toolkit.Services</Name>
</ProjectReference>
<ProjectReference Include="..\Microsoft.Toolkit.Uwp\Microsoft.Toolkit.Uwp.csproj">
<Project>{805f80df-75c6-4c2f-8fd9-b47f6d0df5a3}</Project>
<Name>Microsoft.Toolkit.Uwp</Name>
</ProjectReference>
<ProjectReference Include="..\Microsoft.Toolkit\Microsoft.Toolkit.csproj">
<Project>{6fe128a8-cefa-4a61-a987-ec92de6b538e}</Project>
<Name>Microsoft.Toolkit</Name>
</ProjectReference>
</ItemGroup>
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' &lt; '14.0' ">
<VisualStudioVersion>14.0</VisualStudioVersion>
</PropertyGroup>
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<Target Name="Before_PrepareLibraryLayout" BeforeTargets="PrepareLibraryLayout">
<PropertyGroup>
<Saved_OutputPath>$(OutputPath)</Saved_OutputPath>
<Saved_TargetPath>$(TargetPath)</Saved_TargetPath>
<OutputPath>$(OutDir)</OutputPath>
<TargetPath>
</TargetPath>
</PropertyGroup>
</Target>
<Target Name="After_PrepareLibraryLayout" AfterTargets="PrepareLibraryLayout">
<PropertyGroup>
<OutputPath>$(Saved_OutputPath)</OutputPath>
<TargetPath>$(Saved_TargetPath)</TargetPath>
</PropertyGroup>
</Target>
</Project>
<Import Project="$(MSBuildSDKExtrasTargets)" Condition="Exists('$(MSBuildSDKExtrasTargets)')" />
</Project>

Просмотреть файл

@ -1,78 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<RuleSet Name="Microsoft Managed Recommended Rules" Description="These rules focus on the most critical problems in your code, including potential security holes, application crashes, and other important logic and design errors. It is recommended to include this rule set in any custom rule set you create for your projects." ToolsVersion="10.0">
<Localization ResourceAssembly="Microsoft.VisualStudio.CodeAnalysis.RuleSets.Strings.dll" ResourceBaseName="Microsoft.VisualStudio.CodeAnalysis.RuleSets.Strings.Localized">
<Name Resource="MinimumRecommendedRules_Name" />
<Description Resource="MinimumRecommendedRules_Description" />
</Localization>
<Rules AnalyzerId="Microsoft.Analyzers.ManagedCodeAnalysis" RuleNamespace="Microsoft.Rules.Managed">
<Rule Id="CA1001" Action="Warning" />
<Rule Id="CA1009" Action="Warning" />
<Rule Id="CA1016" Action="Warning" />
<Rule Id="CA1033" Action="Warning" />
<Rule Id="CA1049" Action="Warning" />
<Rule Id="CA1060" Action="Warning" />
<Rule Id="CA1061" Action="Warning" />
<Rule Id="CA1063" Action="Warning" />
<Rule Id="CA1065" Action="Warning" />
<Rule Id="CA1301" Action="Warning" />
<Rule Id="CA1400" Action="Warning" />
<Rule Id="CA1401" Action="Warning" />
<Rule Id="CA1403" Action="Warning" />
<Rule Id="CA1404" Action="Warning" />
<Rule Id="CA1405" Action="Warning" />
<Rule Id="CA1410" Action="Warning" />
<Rule Id="CA1415" Action="Warning" />
<Rule Id="CA1821" Action="Warning" />
<Rule Id="CA1900" Action="Warning" />
<Rule Id="CA1901" Action="Warning" />
<Rule Id="CA2002" Action="Warning" />
<Rule Id="CA2100" Action="Warning" />
<Rule Id="CA2101" Action="Warning" />
<Rule Id="CA2108" Action="Warning" />
<Rule Id="CA2111" Action="Warning" />
<Rule Id="CA2112" Action="Warning" />
<Rule Id="CA2114" Action="Warning" />
<Rule Id="CA2116" Action="Warning" />
<Rule Id="CA2117" Action="Warning" />
<Rule Id="CA2122" Action="Warning" />
<Rule Id="CA2123" Action="Warning" />
<Rule Id="CA2124" Action="Warning" />
<Rule Id="CA2126" Action="Warning" />
<Rule Id="CA2131" Action="Warning" />
<Rule Id="CA2132" Action="Warning" />
<Rule Id="CA2133" Action="Warning" />
<Rule Id="CA2134" Action="Warning" />
<Rule Id="CA2137" Action="Warning" />
<Rule Id="CA2138" Action="Warning" />
<Rule Id="CA2140" Action="Warning" />
<Rule Id="CA2141" Action="Warning" />
<Rule Id="CA2146" Action="Warning" />
<Rule Id="CA2147" Action="Warning" />
<Rule Id="CA2149" Action="Warning" />
<Rule Id="CA2200" Action="Warning" />
<Rule Id="CA2202" Action="Warning" />
<Rule Id="CA2207" Action="Warning" />
<Rule Id="CA2212" Action="Warning" />
<Rule Id="CA2213" Action="Warning" />
<Rule Id="CA2214" Action="Warning" />
<Rule Id="CA2216" Action="Warning" />
<Rule Id="CA2220" Action="Warning" />
<Rule Id="CA2229" Action="Warning" />
<Rule Id="CA2231" Action="Warning" />
<Rule Id="CA2232" Action="Warning" />
<Rule Id="CA2235" Action="Warning" />
<Rule Id="CA2236" Action="Warning" />
<Rule Id="CA2237" Action="Warning" />
<Rule Id="CA2238" Action="Warning" />
<Rule Id="CA2240" Action="Warning" />
<Rule Id="CA2241" Action="Warning" />
<Rule Id="CA2242" Action="Warning" />
</Rules>
<Rules AnalyzerId="StyleCop.Analyzers" RuleNamespace="StyleCop.Analyzers">
<Rule Id="SA1101" Action="None" />
<Rule Id="SA1633" Action="None" />
<Rule Id="SA1200" Action="None" />
<Rule Id="SA1201" Action="None" />
<Rule Id="SA1309" Action="None" />
</Rules>
</RuleSet>

Просмотреть файл

@ -1,28 +0,0 @@
// ******************************************************************
// Copyright (c) Microsoft. All rights reserved.
// This code is licensed under the MIT License (MIT).
// THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH
// THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE.
// ******************************************************************
using System;
using System.Reflection;
using System.Resources;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("Microsoft.Toolkit.Uwp.Services")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Microsoft.Toolkit.Uwp.Services")]
[assembly: AssemblyCopyright("Copyright © 2015")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: NeutralResourcesLanguage("en")]
[assembly: ComVisible(false)]

Просмотреть файл

@ -15,10 +15,8 @@
<!-- TODO: Update to later version -->
<PackageReference Include="Microsoft.Identity.Client" Version="1.0.304142221-alpha" />
<ProjectReference Include="..\Microsoft.Toolkit\Microsoft.Toolkit.csproj" />
<EmbeddedResource Include="**\*.rd.xml" />
</ItemGroup>
<Import Project="$(MSBuildSDKExtrasTargets)" Condition="Exists('$(MSBuildSDKExtrasTargets)')" />

Просмотреть файл

@ -1,39 +0,0 @@
<?xml version="1.0"?>
<package>
<metadata>
<id>Microsoft.Toolkit.Uwp.Services</id>
<version>$version$</version>
<title>UWP Community Toolkit Services</title>
<authors>Microsoft</authors>
<owners>microsoft, nugetuwptoolkit</owners>
<iconUrl>https://raw.githubusercontent.com/Microsoft/UWPCommunityToolkit/master/build/nuget.png</iconUrl>
<licenseUrl>https://github.com/Microsoft/UWPCommunityToolkit/blob/master/license.md</licenseUrl>
<projectUrl>https://github.com/Microsoft/UWPCommunityToolkit</projectUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<description>This library enables access to different data sources like Bing, Facebook, LinkedIn, MicrosoftGraph, OneDrive and Twitter. It is part of the UWP Community Toolkit.</description>
<releaseNotes>v1.4: https://github.com/Microsoft/UWPCommunityToolkit/releases/tag/v1.4.0</releaseNotes>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
<tags>UWP Toolkit Windows Twitter OAuth Facebook Bing MicrosoftGraph LinkedIn OneDrive</tags>
<references>
<reference file="Microsoft.Toolkit.Uwp.Services.dll" />
</references>
<dependencies>
<dependency id="Microsoft.Toolkit.Uwp" version="$version$" />
<dependency id="Microsoft.Toolkit" version="$version$" />
<dependency id="Microsoft.Toolkit.Services" version="$version$" />
<dependency id="winsdkfb" version="0.12.20161020.4" />
<dependency id="Newtonsoft.Json" version="9.0.1" />
<dependency id="Microsoft.Graph" version="1.2.0"/>
<dependency id="Microsoft.OneDriveSDK" version="2.0.6"/>
<dependency id="Microsoft.OneDriveSDK.Authentication" version="1.0.8"/>
<dependency id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="3.13.7"/>
<dependency id="Microsoft.NETCore.UniversalWindowsPlatform" version="5.3.3" />
</dependencies>
</metadata>
<files>
<file src="$binaries$\Microsoft.Toolkit.Uwp.Services\Microsoft.Toolkit.Uwp.Services.dll" target="lib\uap10.0" />
<file src="$binaries$\Microsoft.Toolkit.Uwp.Services\Microsoft.Toolkit.Uwp.Services.pdb" target="lib\uap10.0" />
<file src="$binaries$\Microsoft.Toolkit.Uwp.Services\Microsoft.Toolkit.Uwp.Services.pri" target="lib\uap10.0" />
<file src="$binaries$\Microsoft.Toolkit.Uwp.Services\Microsoft.Toolkit.Uwp.Services.xml" target="lib\uap10.0" />
</files>
</package>