-
Notifications
You must be signed in to change notification settings - Fork 306
Expand file tree
/
Copy pathEPPlus.System.Drawing.csproj
More file actions
45 lines (42 loc) · 1.7 KB
/
EPPlus.System.Drawing.csproj
File metadata and controls
45 lines (42 loc) · 1.7 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net10.0;net9.0;net8.0;netstandard2.1;netstandard2.0;net462;net35</TargetFrameworks>
<AssemblyVersion>8.4.0.0</AssemblyVersion>
<FileVersion>8.4.0.0</FileVersion>
<Version>8.4.0</Version>
<SignAssembly>true</SignAssembly>
<PackageLicenseFile>license.md</PackageLicenseFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AssemblyOriginatorKeyFile>EPPlus.System.Drawing.snk</AssemblyOriginatorKeyFile>
<RootNamespace>OfficeOpenXml.System.Drawing</RootNamespace>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<PackageIcon>EPPlusLogo.png</PackageIcon>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\EPPlus.Interfaces\EPPlus.Interfaces.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' != 'net35' and '$(TargetFramework)' != 'net462' and '$(TargetFramework)' != 'net9.0' and '$(TargetFramework)' != 'net10.0'">
<PackageReference Include="System.Drawing.Common" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
<PackageReference Include="System.Drawing.Common" VersionOverride="9.0.11" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
<PackageReference Include="System.Drawing.Common" VersionOverride="10.0.1" />
</ItemGroup>
<ItemGroup>
<None Include="EPPlusLogo.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="license.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="readme.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>