-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathMacro-Deck-Spotify-Plugin.csproj
More file actions
56 lines (49 loc) · 1.95 KB
/
Macro-Deck-Spotify-Plugin.csproj
File metadata and controls
56 lines (49 loc) · 1.95 KB
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
54
55
56
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Authors>Develeon64</Authors>
<Copyright>Develeon64</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<TargetFramework>net8.0-windows</TargetFramework>
<RootNamespace>Develeon64.SpotifyPlugin</RootNamespace>
<Version>1.4.1</Version>
<AssemblyName>SpotifyPlugin</AssemblyName>
<UseWindowsForms>true</UseWindowsForms>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="copy /y "$(TargetDir)$(TargetName).dll" "C:\Users\Manuel\AppData\Roaming\Macro Deck\plugins\Develeon64.SpotifyPlugin\$(TargetName).dll"" />
</Target>
<ItemGroup>
<None Remove="Resources\Languages\English.xml" />
<None Remove="Resources\Languages\German.xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\Languages\English.xml" />
<EmbeddedResource Include="Resources\Languages\German.xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="SpotifyAPI.Web" Version="7.2.1" />
<PackageReference Include="SpotifyAPI.Web.Auth" Version="7.2.1" />
</ItemGroup>
<ItemGroup>
<Reference Include="Macro Deck 2">
<HintPath>C:\Program Files\Macro Deck\Macro Deck 2.dll</HintPath>
<EmbedInteropTypes>False</EmbedInteropTypes>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Update="Views\LoopActionConfigView.cs" />
<Compile Update="Views\LibraryActionConfigView.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>