All checks were successful
continuous-integration/drone/push Build is passing
25 lines
1.0 KiB
XML
25 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\CinemaLib\CinemaLib.csproj" />
|
|
<PackageReference Include="Jellyfin.Controller" Version="10.10.3" />
|
|
<!--ProjectReference Include="..\..\..\jellyfin/MediaBrowser.Controller\MediaBrowser.Controller.csproj" /-->
|
|
<PackageReference Include="Jellyfin.Model" Version="10.10.3" />
|
|
<!--ProjectReference Include="..\..\..\jellyfin\MediaBrowser.Model\MediaBrowser.Model.csproj" /-->
|
|
</ItemGroup>
|
|
|
|
<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="'$(Configuration)' == 'Debug'">
|
|
<ItemGroup>
|
|
<DebugCopyFiles Include="$(TargetDir)\Cinema*.dll" />
|
|
</ItemGroup>
|
|
<MakeDir Directories="\home\code\.local\share\jellyfin\plugins\Cinema" />
|
|
<Copy SourceFiles="@(DebugCopyFiles)" DestinationFolder="\home\code\.local\share\jellyfin\plugins\Cinema" />
|
|
</Target>
|
|
</Project>
|