-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathPlexampRPC.csproj
More file actions
60 lines (52 loc) · 2.21 KB
/
Copy pathPlexampRPC.csproj
File metadata and controls
60 lines (52 loc) · 2.21 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
57
58
59
60
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<AssemblyName>PlexampRPC</AssemblyName>
<Version>1.6.1</Version>
<Copyright>Copyright © 2025 Dyvinia</Copyright>
<Company>Dyvinia</Company>
<ApplicationIcon>Resources\Icon.ico</ApplicationIcon>
<PathMap>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)'))=$(MSBuildProjectName)\</PathMap>
</PropertyGroup>
<ItemGroup>
<COMReference Include="IWshRuntimeLibrary">
<WrapperTool>tlbimp</WrapperTool>
<VersionMinor>0</VersionMinor>
<VersionMajor>1</VersionMajor>
<Guid>f935dc20-1cf0-11d0-adb9-00c04fd58a0b</Guid>
<Lcid>0</Lcid>
<Isolated>false</Isolated>
<EmbedInteropTypes>true</EmbedInteropTypes>
</COMReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="DiscordRichPresence" Version="1.6.2.72" />
<PackageReference Include="Hardcodet.NotifyIcon.Wpf" Version="2.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.9" />
<PackageReference Include="Plex.Api" Version="4.1.2" />
<PackageReference Include="SharpVectors.Wpf" Version="1.8.5" />
</ItemGroup>
<ItemGroup>
<Folder Include="Themes\" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\gg\ggmono.ttf" />
<Resource Include="Resources\gg\ggsans bold.ttf" />
<Resource Include="Resources\gg\ggsans medium.ttf" />
<Resource Include="Resources\gg\ggsans.ttf" />
<Resource Include="Resources\gg\ggsans semibold.ttf" />
<Resource Include="Resources\Icon.ico" />
<Resource Include="Resources\Inter\Inter-Italic-VariableFont_opsz,wght.ttf" />
<Resource Include="Resources\Inter\Inter-VariableFont_opsz,wght.ttf" />
<Resource Include="Resources\PlexIcon.png" />
<Resource Include="Resources\PlexIcon.svg" />
<Resource Include="Resources\PlexPaused.png" />
<Resource Include="Resources\Buttons\settings.svg" />
<Resource Include="Resources\Buttons\terminal.svg" />
<Resource Include="Resources\Svg\NowPlaying.svg" />
</ItemGroup>
</Project>