34 lines
1 KiB
XML
34 lines
1 KiB
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>
|
|
<!-- Manually include the WebDav.Client.dll in the output directory -->
|
|
<None Include="$(NuGetPackageRoot)webdav.client/2.9.0/lib/netstandard2.0/WebDav.Client.dll">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Configuration\configPage.html" />
|
|
<EmbeddedResource Include="Configuration\configPage.html" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="meta.json">
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
</Project>
|