jellyfin-discord-rpc/JellyfinDiscordRPC/JellyfinDiscordRPC.csproj
Diamond Creeper 3a164c5599 Added stuff
- Attempted to fix the status for when screensharing
- Added the application icon
2024-11-30 21:56:13 +13:00

23 lines
573 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Platforms>AnyCPU;x64;x86</Platforms>
<PackageIcon>jellyfin.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DiscordRichPresence" Version="1.2.1.24" />
</ItemGroup>
<ItemGroup>
<None Update="assets\jellyfin.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>