forked from EvotecIT/OfficeIMO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOfficeIMO.Word.csproj
73 lines (63 loc) · 3.12 KB
/
OfficeIMO.Word.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
63
64
65
66
67
68
69
70
71
72
73
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>An Open Source cross-platform .NET library providing an easy way to create Microsoft Word (DocX) documents.</Description>
<AssemblyName>OfficeIMO.Word</AssemblyName>
<AssemblyTitle>OfficeIMO.Word</AssemblyTitle>
<VersionPrefix>0.13.0</VersionPrefix>
<TargetFrameworks Condition=" '$([MSBuild]::IsOsPlatform(`Windows`))' ">netstandard2.0;netstandard2.1;net472;net48;net6.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks Condition=" '$([MSBuild]::IsOsPlatform(`OSX`))' Or '$([MSBuild]::IsOsPlatform(`Linux`))' ">net6.0;net7.0;net8.0</TargetFrameworks>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<Company>Evotec</Company>
<Authors>Przemyslaw Klys</Authors>
<PackageId>OfficeIMO.Word</PackageId>
<PackageTags>docx;net60;word;office;openxml;net472;net48;net50;netstandard;netstandard2.0,netstandard2.1;net70</PackageTags>
<PackageProjectUrl>https://github.com/evotecit/OfficeIMO</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/evotecit/OfficeIMO/blob/master/License.md</PackageLicenseUrl>
<DelaySign>False</DelaySign>
<IsPublishable>True</IsPublishable>
<Copyright>(c) 2011 - 2023 Przemyslaw Klys @ Evotec. All rights reserved.</Copyright>
<PackageIcon>OfficeIMO.png</PackageIcon>
<RepositoryUrl>https://github.com/evotecit/OfficeIMO</RepositoryUrl>
<DebugType>portable</DebugType>
<!--
Turns off reference assembly generation
See: https://docs.microsoft.com/en-us/dotnet/standard/assembly/reference-assemblies
-->
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
<ApplicationIcon>OfficeIMO.ico</ApplicationIcon>
<PackageReadmeFile>README.MD</PackageReadmeFile>
<RepositoryType>git</RepositoryType>
<SignAssembly>False</SignAssembly>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net6.0|AnyCPU'">
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net6.0|AnyCPU'">
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Content Include="OfficeIMO.ico" />
</ItemGroup>
<ItemGroup>
<None Include="..\Assets\OfficeIMO.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\Assets\README.MD">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="DocumentFormat.OpenXml" Version="[2.16.0,3.0.0)" />
<PackageReference Include="SixLabors.ImageSharp" Version="[2.1.6,3.0.0)" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="OfficeIMO.Tests" />
</ItemGroup>
</Project>