-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathQuickLookup.csproj
44 lines (42 loc) · 1.59 KB
/
QuickLookup.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.3.3</Version>
<Company>AusSec</Company>
<Authors>GTGalaxi</Authors>
<TargetFramework>net6.0</TargetFramework>
<PreserveCompilationContext>false</PreserveCompilationContext>
<Product>Quick Lookup - Power Toys Plugin</Product>
<Copyright>https://github.com/GTGalaxi/quick-lookup-ptrun</Copyright>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Reference Include="ManagedCommon">
<HintPath>.\libs\PowerToys.ManagedCommon.dll</HintPath>
</Reference>
<Reference Include="Common.UI">
<HintPath>.\libs\PowerToys.Common.UI.dll</HintPath>
</Reference>
<Reference Include="Wox.Infrastructure">
<HintPath>.\libs\Wox.Infrastructure.dll</HintPath>
</Reference>
<Reference Include="Wox.Plugin">
<HintPath>.\libs\Wox.Plugin.dll</HintPath>
</Reference>
<None Update="./img/ql.dark.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="./img/ql.light.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="plugin.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="tools.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>