File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
ILRepack.Lib.MSBuild.Task Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff 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 (
You can’t perform that action at this time.
0 commit comments