LANCommander.PlaynitePlugin/LANCommander.PowerShell/ILRepack.targets

23 lines
1,020 B
Text
Raw Permalink Normal View History

<?xml version="1.0" encoding="utf-8" ?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Target Name="ILRepacker" AfterTargets="Build" Condition="'$(Configuration)' == 'Release'">
<ItemGroup>
<InputAssemblies Include="$(TargetPath)" />
<InputAssemblies Include="$(OutputPath)\YamlDotNet.dll" />
<InputAssemblies Include="$(OutputPath)\PeanutButter.INI.dll" />
<InputAssemblies Include="$(OutputPath)\LANCommander.SDK.dll" />
2024-07-10 17:41:52 -05:00
<InputAssemblies Include="$(OutputPath)\Crc32.NET.dll" />
<InputAssemblies Include="$(OutputPath)\RestSharp.dll" />
<InputAssemblies Include="$(OutputPath)\Semver.dll" />
<InputAssemblies Include="$(OutputPath)\SharpCompress.dll" />
</ItemGroup>
<ILRepack
Parallel="true"
Internalize="true"
InputAssemblies="@(InputAssemblies)"
TargetKind="Dll"
OutputFile="$(OutputPath)\$(AssemblyName).dll"
/>
</Target>
</Project>