-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathQuickLook.Plugin.HelloWorld.csproj
48 lines (43 loc) · 1.81 KB
/
QuickLook.Plugin.HelloWorld.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net462</TargetFramework>
<RootNamespace>QuickLook.Plugin.HelloWorld</RootNamespace>
<AssemblyName>QuickLook.Plugin.HelloWorld</AssemblyName>
<Platforms>AnyCPU;x64</Platforms>
<UseWPF>true</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
<LangVersion>latest</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
<DebugType>full</DebugType>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Remove="QuickLook.Common\**" />
<EmbeddedResource Remove="QuickLook.Common\**" />
<None Remove="QuickLook.Common\**" />
<Page Remove="QuickLook.Common\**" />
</ItemGroup>
<ItemGroup>
<None Include="QuickLook.Plugin.Metadata.Base.config" />
<None Include="QuickLook.Plugin.Metadata.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="QuickLook.Common\QuickLook.Common.csproj" />
</ItemGroup>
</Project>