forked from waaverecords/PowerToys-Run-Spotify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PowerToys-Run-Spotify.csproj
42 lines (37 loc) · 1.4 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.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>
</Project>