mirror of
https://github.com/cxfksword/jellyfin-plugin-danmu.git
synced 2026-02-03 02:04:47 +08:00
26 lines
935 B
XML
26 lines
935 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Target Name="ILRepacker" AfterTargets="Build" Condition="'$(Configuration)'=='Release'">
|
|
<PropertyGroup>
|
|
<DoILRepack>false</DoILRepack>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<InputAssemblies Include="$(OutputPath)$(AssemblyName).dll" />
|
|
<InputAssemblies Include="$(OutputPath)RateLimiter.dll" />
|
|
<InputAssemblies Include="$(OutputPath)ComposableAsync.Core.dll" />
|
|
<InputAssemblies Include="$(OutputPath)Google.Protobuf.dll" />
|
|
<InputAssemblies Include="$(OutputPath)ICSharpCode.SharpZipLib.dll" />
|
|
</ItemGroup>
|
|
|
|
<ILRepack
|
|
Parallel="false"
|
|
Internalize="true"
|
|
DebugInfo="true"
|
|
InputAssemblies="@(InputAssemblies)"
|
|
LibraryPath="$(OutputPath)"
|
|
TargetKind="Dll"
|
|
OutputFile="$(OutputPath)$(AssemblyName).dll"
|
|
/>
|
|
</Target>
|
|
</Project> |