WebDAV client service (stubbed for WebDav.Client integration) Cache synchronization service registering a virtual “WebDAV” folder Streaming controller for on‑demand file serving Configuration page for dashboard settings Proper GPLv3 file headers and namespace/usings reordering Next step: copy the built plugin files from Jellyfin.Plugin.Webdav/bin/Debug/net8.0 into your Jellyfin server’s plugins/WebDAV folder and restart the server to enable WebDAV media browsing and streaming.
25 lines
697 B
XML
25 lines
697 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<RootNamespace>Jellyfin.Plugin.Webdav</RootNamespace>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Jellyfin.Controller" Version="10.9.11" />
|
|
<PackageReference Include="Jellyfin.Model" Version="10.9.11" />
|
|
<PackageReference Include="WebDav.Client" Version="2.9.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Configuration\configPage.html" />
|
|
<EmbeddedResource Include="Configuration\configPage.html" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|