-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathILRepack.targets
14 lines (14 loc) · 899 Bytes
/
ILRepack.targets
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)" />
<!-- Only use the line below if you choose to use the DLL and not the class. If you choose the DLL, be sure to reference and
tell it to copy to output directory-->
<!-- <InputAssemblies Include="$(OutputPath)\SkillManager.dll" /> -->
<InputAssemblies Include="$(OutputPath)\ServerSync.dll" />
<InputAssemblies Include="$(OutputPath)\YamlDotNet.dll" />
</ItemGroup>
<ILRepack Parallel="true" DebugInfo="true" Internalize="true" InputAssemblies="@(InputAssemblies)" OutputFile="$(TargetPath)" TargetKind="SameAsPrimaryAssembly" LibraryPath="$(OutputPath)" />
</Target>
</Project>