Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/src/commit/cb8f01065a03a5ba546c1ff33c7452d81c32da62/fuzz/Jellyfin.Api.Fuzz/Jellyfin.Api.Fuzz.csproj You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/fuzz/Jellyfin.Api.Fuzz/Jellyfin.Api.Fuzz.csproj

23 lines
490 B

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.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>