-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathPowerToys-Run-Spotify.csproj
53 lines (46 loc) · 1.77 KB
/
PowerToys-Run-Spotify.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
49
50
51
52
53
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0-windows</TargetFramework>
<RootNamespace>PowerToys_Run_Spotify</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<OutputType>Library</OutputType>
<UseWpf>true</UseWpf>
<EnableDynamicLoading>true</EnableDynamicLoading>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SpotifyAPI.Web" Version="7.0.0" />
<PackageReference Include="SpotifyAPI.Web.Auth" Version="7.0.0" />
</ItemGroup>
<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="PowerToys.Settings.UI.Lib">
<HintPath>libs\PowerToys.Settings.UI.Lib</HintPath>
</Reference>
<Reference Include="Wox.Plugin">
<HintPath>libs\Wox.Plugin.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Update="plugin.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="images\**\*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<Target Name="PreBuild" BeforeTargets="BeforeBuild">
<Exec Command="GenerateResourcesDesigner.bat" />
</Target>
</Project>