|
1 |
| -<Project Sdk="Microsoft.NET.Sdk"> |
2 |
| - |
3 |
| - <PropertyGroup> |
4 |
| - <TargetFramework>net8.0-windows</TargetFramework> |
5 |
| - <Nullable>enable</Nullable> |
6 |
| - <UseWPF>true</UseWPF> |
7 |
| - <AssemblyName>Community.PowerToys.Run.Plugin.$(MSBuildProjectName)</AssemblyName> |
8 |
| - <Platforms>AnyCPU;x64;ARM64</Platforms> |
9 |
| - <Version>1.7.0</Version> |
10 |
| - </PropertyGroup> |
11 |
| - |
12 |
| - <!-- These libraries can be copied from any installation of PowerToys --> |
13 |
| - <!-- They are located at <PowerToys Path>\modules\launcher --> |
14 |
| - <ItemGroup> |
15 |
| - <Reference Include="Wox.Plugin"> |
16 |
| - <HintPath>libs\Wox.Plugin.dll</HintPath> |
17 |
| - </Reference> |
18 |
| - <Reference Include="Wox.Infrastructure"> |
19 |
| - <HintPath>libs\Wox.Infrastructure.dll</HintPath> |
20 |
| - </Reference> |
21 |
| - <Reference Include="Microsoft.Data.Sqlite"> |
22 |
| - <HintPath>libs\Microsoft.Data.Sqlite.dll</HintPath> |
23 |
| - </Reference> |
24 |
| - <Reference Include="PowerToys.Settings.UI.Lib"> |
25 |
| - <HintPath>libs\PowerToys.Settings.UI.Lib.dll</HintPath> |
26 |
| - </Reference> |
27 |
| - </ItemGroup> |
28 |
| - |
29 |
| - <ItemGroup> |
30 |
| - <None Update="Images\BrowserSearch.dark.png"> |
31 |
| - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
32 |
| - </None> |
33 |
| - <None Update="Images\BrowserSearch.light.png"> |
34 |
| - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
35 |
| - </None> |
36 |
| - <None Update="plugin.json"> |
37 |
| - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
38 |
| - </None> |
39 |
| - </ItemGroup> |
40 |
| - |
41 |
| -</Project> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFramework>net8.0-windows</TargetFramework> |
| 5 | + <Nullable>enable</Nullable> |
| 6 | + <UseWPF>true</UseWPF> |
| 7 | + <AssemblyName>Community.PowerToys.Run.Plugin.$(MSBuildProjectName)</AssemblyName> |
| 8 | + <Platforms>AnyCPU;x64;ARM64</Platforms> |
| 9 | + <Version>1.8.0</Version> |
| 10 | + </PropertyGroup> |
| 11 | + |
| 12 | + <!-- These libraries can be copied from any installation of PowerToys --> |
| 13 | + <!-- They are located at <PowerToys Path>\modules\launcher --> |
| 14 | + <ItemGroup> |
| 15 | + <Reference Include="Wox.Plugin"> |
| 16 | + <HintPath>libs\Wox.Plugin.dll</HintPath> |
| 17 | + </Reference> |
| 18 | + <Reference Include="Wox.Infrastructure"> |
| 19 | + <HintPath>libs\Wox.Infrastructure.dll</HintPath> |
| 20 | + </Reference> |
| 21 | + <Reference Include="Microsoft.Data.Sqlite"> |
| 22 | + <HintPath>libs\Microsoft.Data.Sqlite.dll</HintPath> |
| 23 | + </Reference> |
| 24 | + <Reference Include="PowerToys.Settings.UI.Lib"> |
| 25 | + <HintPath>libs\PowerToys.Settings.UI.Lib.dll</HintPath> |
| 26 | + </Reference> |
| 27 | + </ItemGroup> |
| 28 | + |
| 29 | + <ItemGroup> |
| 30 | + <None Update="Images\BrowserSearch.dark.png"> |
| 31 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 32 | + </None> |
| 33 | + <None Update="Images\BrowserSearch.light.png"> |
| 34 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 35 | + </None> |
| 36 | + <None Update="plugin.json"> |
| 37 | + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
| 38 | + </None> |
| 39 | + </ItemGroup> |
| 40 | + |
| 41 | +</Project> |
0 commit comments