forked from 0xC0000054/pdn-webp
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathWebPFileType.csproj
More file actions
116 lines (116 loc) · 5.83 KB
/
Copy pathWebPFileType.csproj
File metadata and controls
116 lines (116 loc) · 5.83 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<Project>
<Import Sdk="Microsoft.NET.Sdk" Project="Sdk.props" />
<PropertyGroup>
<ProductVersion>8.0.30703</ProductVersion>
<ProjectGuid>{4C81127E-5E26-47F8-94F4-D4DD1F503D4B}</ProjectGuid>
<TargetFrameworks>net47;net35</TargetFrameworks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>full</DebugType>
<OutputPath>bin\$(Configuration)\</OutputPath>
<NoWarn>0436</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<OutputPath>bin\$(Configuration)\</OutputPath>
<NoWarn>0436</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
<OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
<DebugType>full</DebugType>
<CodeAnalysisLogFile>bin\Debug\WebPFileType.dll.CodeAnalysisLog.xml</CodeAnalysisLogFile>
<CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
<CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<CodeAnalysisRuleSetDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets</CodeAnalysisRuleSetDirectories>
<CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
<CodeAnalysisRuleDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
<CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
<NoWarn>436</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
<OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
<DebugType>pdbonly</DebugType>
<CodeAnalysisLogFile>bin\Release\WebPFileType.dll.CodeAnalysisLog.xml</CodeAnalysisLogFile>
<CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
<CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
<CodeAnalysisRuleSetDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets</CodeAnalysisRuleSetDirectories>
<CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
<CodeAnalysisRuleDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
<CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
<NoWarn>436</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'net35' ">
<DefineConstants>PDN_3_5_X</DefineConstants>
</PropertyGroup>
<Import Sdk="Microsoft.NET.Sdk" Project="Sdk.targets" />
<PropertyGroup Condition=" '$(TargetFramework)' != 'net35' ">
<PreBuildEvent>del "D:\Program Files\Paint.NET\FileTypes\$(TargetName).pdb"</PreBuildEvent>
<PostBuildEvent>
Copy "$(TargetPath)" "D:\Program Files\Paint.NET\FileTypes" /y
if "$(ConfigurationName)" == "Debug" copy "$(TargetDir)$(TargetName).pdb" "D:\Program Files\Paint.NET\FileTypes" /y
</PostBuildEvent>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' != 'net35' ">
<Reference Include="PaintDotNet.Base">
<HintPath>D:\Program Files\paint.net\PaintDotNet.Base.dll</HintPath>
</Reference>
<Reference Include="PaintDotNet.Core">
<HintPath>D:\Program Files\paint.net\PaintDotNet.Core.dll</HintPath>
</Reference>
<Reference Include="PaintDotNet.Data">
<HintPath>D:\Program Files\paint.net\PaintDotNet.Data.dll</HintPath>
</Reference>
<Reference Include="System.Windows.Forms" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net35' ">
<Reference Include="PaintDotNet.Base">
<HintPath>..\PSFilterPdn\References\PaintDotNet.Base.dll</HintPath>
</Reference>
<Reference Include="PaintDotNet.Core">
<HintPath>..\PSFilterPdn\References\PaintDotNet.Core.dll</HintPath>
</Reference>
<Reference Include="PaintDotNet.Data">
<HintPath>..\PSFilterPdn\References\PaintDotNet.Data.dll</HintPath>
</Reference>
<Reference Include="PaintDotNet.SystemLayer">
<HintPath>..\PSFilterPdn\References\PaintDotNet.SystemLayer.dll</HintPath>
</Reference>
<Reference Include="System.Windows.Forms" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Release\**" />
<Compile Remove="vendor\**" />
<Compile Remove="WebP\**" />
<Compile Remove="x64\**" />
<EmbeddedResource Remove="Release\**" />
<EmbeddedResource Remove="vendor\**" />
<EmbeddedResource Remove="WebP\**" />
<EmbeddedResource Remove="x64\**" />
<None Remove="Release\**" />
<None Remove="vendor\**" />
<None Remove="WebP\**" />
<None Remove="x64\**" />
</ItemGroup>
<ItemGroup>
<None Remove=".gitattributes" />
<None Remove=".gitignore" />
<None Remove="License.txt" />
<None Remove="README.md" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
</Project>