|
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <Description>An Open Source cross-platform .NET mail-client library that is based on MimeKit and optimized for mobile devices.</Description> |
| 5 | + <AssemblyTitle>MailKit</AssemblyTitle> |
| 6 | + <VersionPrefix>2.15.0</VersionPrefix> |
| 7 | + <Authors>Jeffrey Stedfast</Authors> |
| 8 | + <TargetFrameworks>netstandard2.0;netstandard2.1;net45;net46;net47;net48;net50</TargetFrameworks> |
| 9 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 10 | + <EnableDefaultCompileItems>false</EnableDefaultCompileItems> |
| 11 | + <AssemblyName>MailKitLite</AssemblyName> |
| 12 | + <PackageId>MailKitLite</PackageId> |
| 13 | + <PackageTags>smtp;pop3;imap;mime;security;dkim;smime;s/mime;openpgp;pgp;mbox;mail;email;parser;tnef;net45;net46;net47;net48;net50;netstandard;netstandard2.0</PackageTags> |
| 14 | + <PackageProjectUrl>https://github.com/jstedfast/MailKit</PackageProjectUrl> |
| 15 | + <PackageLicenseUrl>https://github.com/jstedfast/MailKit/blob/master/License.md</PackageLicenseUrl> |
| 16 | + <GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute> |
| 17 | + <GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute> |
| 18 | + <GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> |
| 19 | + <GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> |
| 20 | + <GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> |
| 21 | + <GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute> |
| 22 | + <GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute> |
| 23 | + <GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute> |
| 24 | + <GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute> |
| 25 | + <RootNamespace>MailKit</RootNamespace> |
| 26 | + <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
| 27 | + <AssemblyOriginatorKeyFile>mailkit.snk</AssemblyOriginatorKeyFile> |
| 28 | + <DefineConstants>$(DefineConstants);MAILKIT_LITE</DefineConstants> |
| 29 | + <SignAssembly>true</SignAssembly> |
| 30 | + <DebugSymbols>true</DebugSymbols> |
| 31 | + </PropertyGroup> |
| 32 | + |
| 33 | + <PropertyGroup Condition=" '$(Configuration)' == 'Debug' "> |
| 34 | + <DebugType>full</DebugType> |
| 35 | + </PropertyGroup> |
| 36 | + |
| 37 | + <PropertyGroup Condition=" '$(Configuration)' == 'Release' "> |
| 38 | + <DebugType>portable</DebugType> |
| 39 | + </PropertyGroup> |
| 40 | + |
| 41 | + <PropertyGroup Condition=" '$(Configuration)' == 'Release' And $(TargetFramework.StartsWith('net4')) "> |
| 42 | + <DebugType>full</DebugType> |
| 43 | + </PropertyGroup> |
| 44 | + |
| 45 | + <PropertyGroup Condition=" $(TargetFramework.StartsWith('net4')) Or $(TargetFramework.StartsWith('net5')) "> |
| 46 | + <DefineConstants>$(DefineConstants);SERIALIZABLE</DefineConstants> |
| 47 | + </PropertyGroup> |
| 48 | + |
| 49 | + <!--ItemGroup Condition=" $(TargetFramework.StartsWith('net4')) "> |
| 50 | + <Reference Include="System.Net" /> |
| 51 | + </ItemGroup--> |
| 52 | + |
| 53 | + <ItemGroup> |
| 54 | + <ProjectReference Include="..\submodules\MimeKit\MimeKit\MimeKitLite.csproj" /> |
| 55 | + </ItemGroup> |
| 56 | + |
| 57 | + <ItemGroup> |
| 58 | + <Compile Remove="Net\SelectMode.cs;Security\KeyedHashAlgorithm.cs;Security\RandomNumberGenerator.cs" /> |
| 59 | + </ItemGroup> |
| 60 | + |
| 61 | + <ItemGroup> |
| 62 | + <Compile Include="Net\Imap\AsyncImapClient.cs" /> |
| 63 | + <Compile Include="Net\Imap\IImapClient.cs" /> |
| 64 | + <Compile Include="Net\Imap\IImapFolder.cs" /> |
| 65 | + <Compile Include="Net\Imap\ImapAuthenticationSecretDetector.cs" /> |
| 66 | + <Compile Include="Net\Imap\ImapCallbacks.cs" /> |
| 67 | + <Compile Include="Net\Imap\ImapCapabilities.cs" /> |
| 68 | + <Compile Include="Net\Imap\ImapClient.cs" /> |
| 69 | + <Compile Include="Net\Imap\ImapCommand.cs" /> |
| 70 | + <Compile Include="Net\Imap\ImapCommandException.cs" /> |
| 71 | + <Compile Include="Net\Imap\ImapCommandResponse.cs" /> |
| 72 | + <Compile Include="Net\Imap\ImapEncoding.cs" /> |
| 73 | + <Compile Include="Net\Imap\ImapEngine.cs" /> |
| 74 | + <Compile Include="Net\Imap\ImapEventGroup.cs" /> |
| 75 | + <Compile Include="Net\Imap\ImapFolder.cs" /> |
| 76 | + <Compile Include="Net\Imap\ImapFolderAnnotations.cs" /> |
| 77 | + <Compile Include="Net\Imap\ImapFolderConstructorArgs.cs" /> |
| 78 | + <Compile Include="Net\Imap\ImapFolderFetch.cs" /> |
| 79 | + <Compile Include="Net\Imap\ImapFolderFlags.cs" /> |
| 80 | + <Compile Include="Net\Imap\ImapFolderSearch.cs" /> |
| 81 | + <Compile Include="Net\Imap\ImapImplementation.cs" /> |
| 82 | + <Compile Include="Net\Imap\ImapProtocolException.cs" /> |
| 83 | + <Compile Include="Net\Imap\ImapResponseCode.cs" /> |
| 84 | + <Compile Include="Net\Imap\ImapSearchQueryOptimizer.cs" /> |
| 85 | + <Compile Include="Net\Imap\ImapStream.cs" /> |
| 86 | + <Compile Include="Net\Imap\ImapToken.cs" /> |
| 87 | + <Compile Include="Net\Imap\ImapUtils.cs" /> |
| 88 | + <Compile Include="Net\Pop3\AsyncPop3Client.cs" /> |
| 89 | + <Compile Include="Net\Pop3\IPop3Client.cs" /> |
| 90 | + <Compile Include="Net\Pop3\Pop3AuthenticationSecretDetector.cs" /> |
| 91 | + <Compile Include="Net\Pop3\Pop3Capabilities.cs" /> |
| 92 | + <Compile Include="Net\Pop3\Pop3Client.cs" /> |
| 93 | + <Compile Include="Net\Pop3\Pop3Command.cs" /> |
| 94 | + <Compile Include="Net\Pop3\Pop3CommandException.cs" /> |
| 95 | + <Compile Include="Net\Pop3\Pop3Engine.cs" /> |
| 96 | + <Compile Include="Net\Pop3\Pop3Language.cs" /> |
| 97 | + <Compile Include="Net\Pop3\Pop3ProtocolException.cs" /> |
| 98 | + <Compile Include="Net\Pop3\Pop3Stream.cs" /> |
| 99 | + <Compile Include="Net\Proxy\HttpProxyClient.cs" /> |
| 100 | + <Compile Include="Net\Proxy\HttpsProxyClient.cs" /> |
| 101 | + <Compile Include="Net\Proxy\IProxyClient.cs" /> |
| 102 | + <Compile Include="Net\Proxy\ProxyClient.cs" /> |
| 103 | + <Compile Include="Net\Proxy\ProxyProtocolException.cs" /> |
| 104 | + <Compile Include="Net\Proxy\Socks4aClient.cs" /> |
| 105 | + <Compile Include="Net\Proxy\Socks4Client.cs" /> |
| 106 | + <Compile Include="Net\Proxy\Socks5Client.cs" /> |
| 107 | + <Compile Include="Net\Proxy\SocksClient.cs" /> |
| 108 | + <Compile Include="Net\Smtp\AsyncSmtpClient.cs" /> |
| 109 | + <Compile Include="Net\Smtp\ISmtpClient.cs" /> |
| 110 | + <Compile Include="Net\Smtp\SmtpAuthenticationSecretDetector.cs" /> |
| 111 | + <Compile Include="Net\Smtp\SmtpCapabilities.cs" /> |
| 112 | + <Compile Include="Net\Smtp\SmtpClient.cs" /> |
| 113 | + <Compile Include="Net\Smtp\SmtpCommandException.cs" /> |
| 114 | + <Compile Include="Net\Smtp\SmtpDataFilter.cs" /> |
| 115 | + <Compile Include="Net\Smtp\SmtpProtocolException.cs" /> |
| 116 | + <Compile Include="Net\Smtp\SmtpResponse.cs" /> |
| 117 | + <Compile Include="Net\Smtp\SmtpStatusCode.cs" /> |
| 118 | + <Compile Include="Net\Smtp\SmtpStream.cs" /> |
| 119 | + <Compile Include="Net\IChannelBindingContext.cs" /> |
| 120 | + <Compile Include="Net\NetworkStream.cs" /> |
| 121 | + <Compile Include="Net\SocketUtils.cs" /> |
| 122 | + <Compile Include="Net\SslStream.cs" /> |
| 123 | + <Compile Include="Properties\AssemblyInfo.cs" /> |
| 124 | + <Compile Include="Search\AnnotationSearchQuery.cs" /> |
| 125 | + <Compile Include="Search\BinarySearchQuery.cs" /> |
| 126 | + <Compile Include="Search\DateSearchQuery.cs" /> |
| 127 | + <Compile Include="Search\FilterSearchQuery.cs" /> |
| 128 | + <Compile Include="Search\HeaderSearchQuery.cs" /> |
| 129 | + <Compile Include="Search\ISearchQueryOptimizer.cs" /> |
| 130 | + <Compile Include="Search\NumericSearchQuery.cs" /> |
| 131 | + <Compile Include="Search\OrderBy.cs" /> |
| 132 | + <Compile Include="Search\OrderByAnnotation.cs" /> |
| 133 | + <Compile Include="Search\OrderByType.cs" /> |
| 134 | + <Compile Include="Search\SearchOptions.cs" /> |
| 135 | + <Compile Include="Search\SearchQuery.cs" /> |
| 136 | + <Compile Include="Search\SearchResults.cs" /> |
| 137 | + <Compile Include="Search\SearchTerm.cs" /> |
| 138 | + <Compile Include="Search\SortOrder.cs" /> |
| 139 | + <Compile Include="Search\TextSearchQuery.cs" /> |
| 140 | + <Compile Include="Search\UidSearchQuery.cs" /> |
| 141 | + <Compile Include="Search\UnarySearchQuery.cs" /> |
| 142 | + <Compile Include="Security\Ntlm\BitConverterLE.cs" /> |
| 143 | + <Compile Include="Security\Ntlm\DES.cs" Condition=" $(TargetFramework.StartsWith('netstandard1.')) " /> |
| 144 | + <Compile Include="Security\Ntlm\HMACMD5.cs" Condition=" $(TargetFramework.StartsWith('netstandard1.')) " /> |
| 145 | + <Compile Include="Security\Ntlm\MD4.cs" /> |
| 146 | + <Compile Include="Security\Ntlm\NtlmAttribute.cs" /> |
| 147 | + <Compile Include="Security\Ntlm\NtlmAttributeValuePair.cs" /> |
| 148 | + <Compile Include="Security\Ntlm\NtlmFlags.cs" /> |
| 149 | + <Compile Include="Security\Ntlm\NtlmMessageBase.cs" /> |
| 150 | + <Compile Include="Security\Ntlm\NtlmSingleHostData.cs" /> |
| 151 | + <Compile Include="Security\Ntlm\NtlmTargetInfo.cs" /> |
| 152 | + <Compile Include="Security\Ntlm\NtlmUtils.cs" /> |
| 153 | + <Compile Include="Security\Ntlm\RC4.cs" /> |
| 154 | + <Compile Include="Security\Ntlm\Type1Message.cs" /> |
| 155 | + <Compile Include="Security\Ntlm\Type2Message.cs" /> |
| 156 | + <Compile Include="Security\Ntlm\Type3Message.cs" /> |
| 157 | + <Compile Include="Security\AuthenticationException.cs" /> |
| 158 | + <Compile Include="Security\SaslException.cs" /> |
| 159 | + <Compile Include="Security\SaslMechanism.cs" /> |
| 160 | + <Compile Include="Security\SaslMechanismAnonymous.cs" /> |
| 161 | + <Compile Include="Security\SaslMechanismCramMd5.cs" /> |
| 162 | + <Compile Include="Security\SaslMechanismDigestMd5.cs" /> |
| 163 | + <Compile Include="Security\SaslMechanismLogin.cs" /> |
| 164 | + <Compile Include="Security\SaslMechanismNtlm.cs" /> |
| 165 | + <Compile Include="Security\SaslMechanismOAuth2.cs" /> |
| 166 | + <Compile Include="Security\SaslMechanismOAuthBearer.cs" /> |
| 167 | + <Compile Include="Security\SaslMechanismPlain.cs" /> |
| 168 | + <Compile Include="Security\SaslMechanismScramBase.cs" /> |
| 169 | + <Compile Include="Security\SaslMechanismScramSha1.cs" /> |
| 170 | + <Compile Include="Security\SaslMechanismScramSha256.cs" /> |
| 171 | + <Compile Include="Security\SaslMechanismScramSha512.cs" /> |
| 172 | + <Compile Include="Security\SecureSocketOptions.cs" /> |
| 173 | + <Compile Include="Security\SslHandshakeException.cs" /> |
| 174 | + <Compile Include="AccessControl.cs" /> |
| 175 | + <Compile Include="AccessControlList.cs" /> |
| 176 | + <Compile Include="AccessRight.cs" /> |
| 177 | + <Compile Include="AccessRights.cs" /> |
| 178 | + <Compile Include="AlertEventArgs.cs" /> |
| 179 | + <Compile Include="Annotation.cs" /> |
| 180 | + <Compile Include="AnnotationAccess.cs" /> |
| 181 | + <Compile Include="AnnotationAttribute.cs" /> |
| 182 | + <Compile Include="AnnotationEntry.cs" /> |
| 183 | + <Compile Include="AnnotationsChangedEventArgs.cs" /> |
| 184 | + <Compile Include="AnnotationScope.cs" /> |
| 185 | + <Compile Include="AppendRequest.cs" /> |
| 186 | + <Compile Include="AuthenticatedEventArgs.cs" /> |
| 187 | + <Compile Include="BodyPart.cs" /> |
| 188 | + <Compile Include="BodyPartBasic.cs" /> |
| 189 | + <Compile Include="BodyPartCollection.cs" /> |
| 190 | + <Compile Include="BodyPartMessage.cs" /> |
| 191 | + <Compile Include="BodyPartMultipart.cs" /> |
| 192 | + <Compile Include="BodyPartText.cs" /> |
| 193 | + <Compile Include="BodyPartVisitor.cs" /> |
| 194 | + <Compile Include="CommandException.cs" /> |
| 195 | + <Compile Include="ConnectedEventArgs.cs" /> |
| 196 | + <Compile Include="DeliveryStatusNotification.cs" /> |
| 197 | + <Compile Include="DeliveryStatusNotificationType.cs" /> |
| 198 | + <Compile Include="DisconnectedEventArgs.cs" /> |
| 199 | + <Compile Include="Envelope.cs" /> |
| 200 | + <Compile Include="FetchRequest.cs" /> |
| 201 | + <Compile Include="FolderAccess.cs" /> |
| 202 | + <Compile Include="FolderAttributes.cs" /> |
| 203 | + <Compile Include="FolderCreatedEventArgs.cs" /> |
| 204 | + <Compile Include="FolderFeature.cs" /> |
| 205 | + <Compile Include="FolderNamespace.cs" /> |
| 206 | + <Compile Include="FolderNamespaceCollection.cs" /> |
| 207 | + <Compile Include="FolderNotFoundException.cs" /> |
| 208 | + <Compile Include="FolderNotOpenException.cs" /> |
| 209 | + <Compile Include="FolderQuota.cs" /> |
| 210 | + <Compile Include="FolderRenamedEventArgs.cs" /> |
| 211 | + <Compile Include="HeaderSet.cs" /> |
| 212 | + <Compile Include="IAuthenticationSecretDetector.cs" /> |
| 213 | + <Compile Include="IAppendRequest.cs" /> |
| 214 | + <Compile Include="IFetchRequest.cs" /> |
| 215 | + <Compile Include="IMailFolder.cs" /> |
| 216 | + <Compile Include="IMailFolderAppendExtensions.cs" /> |
| 217 | + <Compile Include="IMailFolderFetchExtensions.cs" /> |
| 218 | + <Compile Include="IMailFolderStoreExtensions.cs" /> |
| 219 | + <Compile Include="IMailService.cs" /> |
| 220 | + <Compile Include="IMailSpool.cs" /> |
| 221 | + <Compile Include="IMailStore.cs" /> |
| 222 | + <Compile Include="IMailTransport.cs" /> |
| 223 | + <Compile Include="IMessageSummary.cs" /> |
| 224 | + <Compile Include="IProtocolLogger.cs" /> |
| 225 | + <Compile Include="IReplaceRequest.cs" /> |
| 226 | + <Compile Include="IStoreFlagsRequest.cs" /> |
| 227 | + <Compile Include="IStoreLabelsRequest.cs" /> |
| 228 | + <Compile Include="IStoreRequest.cs" /> |
| 229 | + <Compile Include="ITransferProgress.cs" /> |
| 230 | + <Compile Include="MailFolder.cs" /> |
| 231 | + <Compile Include="MailService.cs" /> |
| 232 | + <Compile Include="MailSpool.cs" /> |
| 233 | + <Compile Include="MailStore.cs" /> |
| 234 | + <Compile Include="MailTransport.cs" /> |
| 235 | + <Compile Include="MessageEventArgs.cs" /> |
| 236 | + <Compile Include="MessageFlags.cs" /> |
| 237 | + <Compile Include="MessageFlagsChangedEventArgs.cs" /> |
| 238 | + <Compile Include="MessageLabelsChangedEventArgs.cs" /> |
| 239 | + <Compile Include="MessageNotFoundException.cs" /> |
| 240 | + <Compile Include="MessageSentEventArgs.cs" /> |
| 241 | + <Compile Include="MessageSorter.cs" /> |
| 242 | + <Compile Include="MessageSummary.cs" /> |
| 243 | + <Compile Include="MessageSummaryFetchedEventArgs.cs" /> |
| 244 | + <Compile Include="MessageSummaryItems.cs" /> |
| 245 | + <Compile Include="MessagesVanishedEventArgs.cs" /> |
| 246 | + <Compile Include="MessageThread.cs" /> |
| 247 | + <Compile Include="MessageThreader.cs" /> |
| 248 | + <Compile Include="Metadata.cs" /> |
| 249 | + <Compile Include="MetadataChangedEventArgs.cs" /> |
| 250 | + <Compile Include="MetadataCollection.cs" /> |
| 251 | + <Compile Include="MetadataOptions.cs" /> |
| 252 | + <Compile Include="MetadataTag.cs" /> |
| 253 | + <Compile Include="ModSeqChangedEventArgs.cs" /> |
| 254 | + <Compile Include="NullProtocolLogger.cs" /> |
| 255 | + <Compile Include="ProgressStream.cs" /> |
| 256 | + <Compile Include="ProtocolException.cs" /> |
| 257 | + <Compile Include="ProtocolLogger.cs" /> |
| 258 | + <Compile Include="ReplaceRequest.cs" /> |
| 259 | + <Compile Include="ServiceNotAuthenticatedException.cs" /> |
| 260 | + <Compile Include="ServiceNotConnectedException.cs" /> |
| 261 | + <Compile Include="SpecialFolder.cs" /> |
| 262 | + <Compile Include="StatusItems.cs" /> |
| 263 | + <Compile Include="StoreAction.cs" /> |
| 264 | + <Compile Include="StoreFlagsRequest.cs" /> |
| 265 | + <Compile Include="StoreLabelsRequest.cs" /> |
| 266 | + <Compile Include="ThreadingAlgorithm.cs" /> |
| 267 | + <Compile Include="UniqueId.cs" /> |
| 268 | + <Compile Include="UniqueIdMap.cs" /> |
| 269 | + <Compile Include="UniqueIdRange.cs" /> |
| 270 | + <Compile Include="UniqueIdSet.cs" /> |
| 271 | + <Compile Include="UriExtensions.cs" /> |
| 272 | + <Compile Include="WebAlertEventArgs.cs" /> |
| 273 | + </ItemGroup> |
| 274 | + |
| 275 | +</Project> |
0 commit comments