forked from billw2012/BetterContinents
-
Notifications
You must be signed in to change notification settings - Fork 5
/
ILRepack.targets
14 lines (14 loc) · 874 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)" />
<InputAssemblies Include="$(TargetDir)SixLabors.ImageSharp.dll" />
<InputAssemblies Include="$(TargetDir)System.Buffers.dll" />
<InputAssemblies Include="$(TargetDir)System.Memory.dll" />
<InputAssemblies Include="$(TargetDir)System.Runtime.CompilerServices.Unsafe.dll" />
<InputAssemblies Include="$(TargetDir)System.Numerics.Vectors.dll" />
</ItemGroup>
<ILRepack Parallel="true" DebugInfo="false" Internalize="true" InputAssemblies="@(InputAssemblies)" OutputFile="$(TargetPath)" TargetKind="SameAsPrimaryAssembly" LibraryPath="$(OutputPath)" />
</Target>
</Project>