forked from OfficeDev/ews-managed-api
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Microsoft.Exchange.WebServices.NETStandard.csproj
62 lines (55 loc) · 2.89 KB
/
Microsoft.Exchange.WebServices.NETStandard.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<VersionPrefix>2.0.0</VersionPrefix>
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
<AssemblyName>Microsoft.Exchange.WebServices.NETStandard</AssemblyName>
<PackageId>Microsoft.Exchange.WebServices.NETStandard</PackageId>
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute>
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>sherlock1982</Authors>
<RepositoryUrl>https://github.com/sherlock1982/ews-managed-api</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>ews exchange office365 Microsoft Web API Email Client Library C#</PackageTags>
<PackageProjectUrl>https://github.com/sherlock1982/ews-managed-api</PackageProjectUrl>
<Title>Microsoft.Exchange.WebServices.NETStandard</Title>
<Description>The Exchange Web Services (EWS) Managed API provides a managed interface for developing .NET client applications that use EWS. By using the EWS Managed API, you can access almost all the information stored in an Office 365, Exchange Online, or Exchange Server mailbox.</Description>
<PackageReleaseNotes>removed obsolete WebRequests and switched to HttpClient internally
fixed issue with file attachements downloads
restored ldap autodiscover functionality
merged changes from official Microsoft repository
added cancellation token for most of methods
</PackageReleaseNotes>
<Version>2.0.0-beta2</Version>
<PackageLicenseFile>license.txt</PackageLicenseFile>
</PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' ">
<Reference Include="System.Xml" />
<Reference Include="System.Security" />
<Reference Include="System" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.Security.Cryptography.Xml">
<Version>4.7.0</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Compile Remove="Credentials\BasicAuthModuleForUTF8.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.DirectoryServices" Version="4.7.0" />
<PackageReference Include="System.Net.Http" Version="4.3.3" />
</ItemGroup>
<ItemGroup>
<None Include="license.txt">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>