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/4f51a220819bdd1aab11637daf3e6295bed7bae5/fuzz/Jellyfin.Server.Fuzz/Jellyfin.Server.Fuzz.csproj You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/fuzz/Jellyfin.Server.Fuzz/Jellyfin.Server.Fuzz.csproj

23 lines
505 B

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Reference Include="Jellyfin.Server">
<HintPath>jellyfin.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../../MediaBrowser.Common/MediaBrowser.Common.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="SharpFuzz" Version="1.6.2" />
</ItemGroup>
</Project>