Skip to content

Commit 19080be

Browse files
authored
Expose LineIndexation argument (#78)
Expose the ILRepack argument so that it can be used
1 parent 71174a6 commit 19080be

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

ILRepack.Lib.MSBuild.Task/ILRepack.cs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,11 @@ public virtual string AttributeFile
7575
/// </summary>
7676
public virtual bool CopyAttributes { get; set; }
7777

78+
/// <summary>
79+
/// Stores file:line debug information as type/method attributes (requires PDB)
80+
/// </summary>
81+
public virtual bool LineIndexation { get; set; }
82+
7883
/// <summary>
7984
/// Allows multiple attributes (if type allows).
8085
/// </summary>
@@ -257,7 +262,8 @@ public override bool Execute()
257262
OutputFile = _outputFile,
258263
AllowWildCards = Wildcards,
259264
RepackDropAttribute = RepackDropAttribute,
260-
MergeIlLinkerFiles = MergeIlLinkerFiles
265+
MergeIlLinkerFiles = MergeIlLinkerFiles,
266+
LineIndexation = LineIndexation,
261267
};
262268

263269
repackOptions.AllowedDuplicateNameSpaces.AddRange(

0 commit comments

Comments
 (0)