| 12345678910111213141516171819202122 | <Project Sdk="Microsoft.NET.Sdk.Web">  <PropertyGroup>    <OutputType>Exe</OutputType>    <TargetFramework>net9.0</TargetFramework>  </PropertyGroup>  <ItemGroup>    <Reference Include="Jellyfin.Api">      <HintPath>Jellyfin.Api.dll</HintPath>    </Reference>  </ItemGroup>  <ItemGroup>    <ProjectReference Include="../../MediaBrowser.Common/MediaBrowser.Common.csproj" />  </ItemGroup>  <ItemGroup>    <PackageReference Include="SharpFuzz" />  </ItemGroup></Project>
 |