forked from OfficeDev/ews-managed-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Microsoft.Exchange.WebServices.Data.csproj
34 lines (31 loc) · 2.08 KB
/
Microsoft.Exchange.WebServices.Data.csproj
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
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageId>Exchange.WebServices.Fixed</PackageId>
<Authors>Microsoft, Instituto Atlantico</Authors>
<Company>Microsoft Corporation, Instituto Atlantico</Company>
<Owners>vitor_muniz_atlantico;</Owners>
<Summary>Exchange Web Services (EWS) Managed API</Summary>
<Description>
The Exchange Web Services (EWS) Managed API provides a .NET Framework interface to EWS in Exchange Online, Exchange Online as part of Office 365, and versions of Exchange starting with Exchange Server 2007 Service Pack 1 (SP1).
You can use this version of the EWS Managed API to evaluate the library for your application needs, to compare it to directly using XML or the auto generated proxy library, and to create production-ready applications.
</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIconUrl>http://wp.precede.se/wp-content/uploads/2012/10/Exchange_2013-logo.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/Instituto-Atlantico/ews-managed-api</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/Instituto-Atlantico/ews-managed-api</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>Microsoft Exchange Web Services EWS Managed API Email Client Library C#</PackageTags>
<Version>2.2.1</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.DirectoryServices" Version="4.7.0" />
<PackageReference Include="System.DirectoryServices.AccountManagement" Version="4.7.0" />
<PackageReference Include="System.Drawing.Common" Version="4.7.0" />
<PackageReference Include="System.Security.Cryptography.Algorithms" Version="4.3.1" />
<PackageReference Include="System.Security.Cryptography.Xml" Version="4.7.0" />
</ItemGroup>
</Project>