-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAltV.PowerToysRun.Natives.csproj
45 lines (40 loc) · 1.43 KB
/
AltV.PowerToysRun.Natives.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Platforms>x64</Platforms>
<PlatformTarget>x64</PlatformTarget>
<IsPackable>false</IsPackable>
<Version>1.0.0</Version>
<UseWpf>true</UseWpf>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Reference Include="PowerToys.Common.UI">
<HintPath>Libs\PowerToys.Common.UI.dll</HintPath>
</Reference>
<Reference Include="PowerToys.ManagedCommon">
<HintPath>Libs\PowerToys.ManagedCommon.dll</HintPath>
</Reference>
<Reference Include="Wox.Plugin">
<HintPath>Libs\Wox.Plugin.dll</HintPath>
</Reference>
<Reference Include="PowerToys.Settings.UI.Lib">
<HintPath>Libs\PowerToys.Settings.UI.Lib.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Mono.Cecil" Version="0.11.4" />
</ItemGroup>
<ItemGroup>
<None Update="Images\altv.black.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Images\altv.green.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="plugin.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>