-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathGsemac.Drawing.Imaging.WebP.csproj
More file actions
70 lines (63 loc) · 2.46 KB
/
Copy pathGsemac.Drawing.Imaging.WebP.csproj
File metadata and controls
70 lines (63 loc) · 2.46 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
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
<Project Sdk="MSBuild.Sdk.Extras/3.0.44">
<PropertyGroup>
<TargetFrameworks>net40-client;netstandard2.0</TargetFrameworks>
<RootNamespace>Gsemac.Drawing.Imaging</RootNamespace>
<Company />
<Authors>gsemac</Authors>
<Version>0.10.1</Version>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageProjectUrl>https://github.com/gsemac/Gsemac.Common</PackageProjectUrl>
<RepositoryUrl>https://github.com/gsemac/Gsemac.Common</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Copyright></Copyright>
<NoWarn>1701;1702;1591</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Gsemac.Drawing\Gsemac.Drawing.csproj" />
<ProjectReference Include="..\Gsemac.Reflection.Plugins\Gsemac.Reflection.Plugins.csproj" />
</ItemGroup>
<Choose>
<When Condition="$(DefineConstants.Contains('NETFRAMEWORK'))">
<ItemGroup>
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="WebPWrapper">
<HintPath>lib\managed\WebPWrapper.dll</HintPath>
</Reference>
</ItemGroup>
</When>
<Otherwise>
<ItemGroup>
<PackageReference Include="System.Drawing.Common">
<Version>10.0.1</Version>
</PackageReference>
</ItemGroup>
</Otherwise>
</Choose>
<ItemGroup>
<Content Include="Gsemac.Drawing.Imaging.WebP.targets" PackagePath="build/Gsemac.Drawing.Imaging.WebP.targets" />
<Content Include="lib\unmanaged\x86\*" Pack="true" PackagePath="contentFiles\x86">
<PackageCopyToOutput>true</PackageCopyToOutput>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Link>x86\%(Filename)%(Extension)</Link>
</Content>
<Content Include="lib\unmanaged\x64\*" Pack="true" PackagePath="contentFiles\x64">
<PackageCopyToOutput>true</PackageCopyToOutput>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Link>x64\%(Filename)%(Extension)</Link>
</Content>
<Content Include="lib\managed\*" Pack="true" PackagePath="contentFiles\" />
<Content Include="licenses\*" Pack="true" PackagePath="contentFiles\licenses" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\ExceptionMessages.Designer.cs">
<DesignTime>True</DesignTime>
</Compile>
</ItemGroup>
</Project>