You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
2.8 KiB

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net45;netstandard2.0</TargetFrameworks>
<RootNamespace>MsgReader</RootNamespace>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>3.6.1</Version>
<AssemblyVersion>3.6.1.0</AssemblyVersion>
<Authors>Kees van Spelde</Authors>
<Company>Kees van Spelde</Company>
<Copyright>(c)2019 - Kees van Spelde</Copyright>
<PackageProjectUrl>https://github.com/Sicos1977/MSGReader</PackageProjectUrl>
<PackageLicenseUrl>https://opensource.org/licenses/MIT</PackageLicenseUrl>
<PackageIconUrl>http://icons.iconarchive.com/icons/carlosjj/microsoft-office-2013/64/Outlook-icon.png</PackageIconUrl>
<RepositoryUrl>https://github.com/Sicos1977/MSGReader</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<PackageTags>Outlook MSG Signed EML Contact Appointment Task</PackageTags>
<Description>Read Outlook MSG and EML files without using Outlook.
The MSGReader supports MSG E-Mail (also signed), Contact, Appointment, Task, Sticky notes and Contact files.
The EML reader supports MIME 1.0 encoded files</Description>
<PackageReleaseNotes>- Added Spanish and Chinese translations</PackageReleaseNotes>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>MSGReader.snk</AssemblyOriginatorKeyFile>
<FileVersion>3.6.1.0</FileVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>D:\Progsoft\_GitHub_\MSGReader\MsgReaderCore\MsgReader.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="OpenMcdf" Version="2.2.1.2" />
<PackageReference Include="System.Drawing.Common" Version="4.5.1" />
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="4.5.1" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="OpenMcdf" Version="2.2.1.3" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0'">
<Reference Include="RtfPipe">
<HintPath>..\Assemblies\netstandard20\RtfPipe.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Web" />
<Reference Include="System.Drawing" />
<Reference Include="System.Security" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net45'">
<PackageReference Include="OpenMcdf" Version="2.2.1.3" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net45'">
<Reference Include="RtfPipe">
<HintPath>..\Assemblies\net45\RtfPipe.dll</HintPath>
</Reference>
</ItemGroup>
</Project>