| 12345678910111213141516171819202122232425 | <Project Sdk="Microsoft.NET.Sdk">  <PropertyGroup>    <OutputType>Exe</OutputType>    <TargetFramework>net7.0</TargetFramework>  </PropertyGroup>  <ItemGroup>    <Reference Include="Emby.Server.Implementations">      <HintPath>Emby.Server.Implementations.dll</HintPath>    </Reference>  </ItemGroup>  <ItemGroup>    <ProjectReference Include="../../MediaBrowser.Controller/MediaBrowser.Controller.csproj" />  </ItemGroup>  <ItemGroup>    <PackageReference Include="AutoFixture" />    <PackageReference Include="AutoFixture.AutoMoq" />    <PackageReference Include="Moq" />    <PackageReference Include="SharpFuzz" />  </ItemGroup></Project>
 |