-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathILRepack.targets
More file actions
14 lines (14 loc) · 905 Bytes
/
ILRepack.targets
File metadata and controls
14 lines (14 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Target Name="ILRepacker" AfterTargets="Build">
<ItemGroup>
<InputAssemblies Include="$(TargetPath)" />
<InputAssemblies Include="$(OutputPath)Libs\ServerSync.dll" />
<InputAssemblies Include="$(OutputPath)\YamlDotNet.dll" />
<!-- Only use the line below if you choose to use the DLL and not the classes. If you choose the DLL, be sure to reference and
tell it to copy to output directory-->
<!-- <InputAssemblies Include="$(OutputPath)\PieceManager.dll" /> -->
</ItemGroup>
<ILRepack Parallel="true" DebugInfo="true" Internalize="true" InputAssemblies="@(InputAssemblies)" OutputFile="$(TargetPath)" TargetKind="SameAsPrimaryAssembly" LibraryPath="$(OutputPath)" />
</Target>
</Project>