-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathCommunityToolkit.Graph.csproj
More file actions
30 lines (24 loc) · 1.29 KB
/
CommunityToolkit.Graph.csproj
File metadata and controls
30 lines (24 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Title>Windows Community Toolkit .NET Standard Graph Services</Title>
<Description>
This package includes .NET Standard code helpers such as:
Extensions:
- GraphExtensions: Helpers for common tasks related to the Microsoft Graph in context of the available controls and helpers.
- ProviderExtensions: Extension on IProvider for accessing a pre-configured GraphServiceClient instance.
Helpers:
- OneDriveStorageHelper: A helper for interacting with data stored via files and folders in OneDrive.
- UserExtensionStorageHelper: A helper for interacting with open extensions on the Graph User to store data in key/value pairs.
</Description>
<PackageTags>Windows Community Toolkit Microsoft Graph Provider Extensions Helpers Roaming Settings</PackageTags>
<LangVersion>9.0</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Graph" Version="4.3.0" />
<PackageReference Include="Microsoft.Toolkit" Version="7.1.0-rc1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CommunityToolkit.Authentication\CommunityToolkit.Authentication.csproj" />
</ItemGroup>
</Project>