Skip to content

Commit 35a9ccb

Browse files
authored
Added missing NoRepackRes option (#30)
1 parent caf641e commit 35a9ccb

5 files changed

Lines changed: 18 additions & 4 deletions

File tree

ILRepack.Lib.MSBuild.Task/ILRepack.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,11 @@ public virtual string OutputFile
222222
/// </summary>
223223
public virtual bool Verbose { get; set; }
224224

225+
/// <summary>
226+
/// Does not add the embedded resource 'ILRepack.List' with all merged assembly names.
227+
/// </summary>
228+
public virtual bool NoRepackRes { get; set; }
229+
225230
/// <summary>
226231
/// Allows (and resolves) file wildcards (e.g. `*`.dll) in input assemblies.
227232
/// </summary>
@@ -248,6 +253,7 @@ public override bool Execute()
248253
KeyContainer = _keyContainer,
249254
LogFile = _logFile,
250255
LogVerbose = Verbose,
256+
NoRepackRes = NoRepackRes,
251257
UnionMerge = Union,
252258
DebugInfo = DebugInfo,
253259
CopyAttributes = CopyAttributes,

ILRepack.Lib.MSBuild.Task/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("2.0.18.2")]
35-
[assembly: AssemblyFileVersion("2.0.18.2")]
34+
[assembly: AssemblyVersion("2.0.18.3")]
35+
[assembly: AssemblyFileVersion("2.0.18.3")]

ILRepack.Lib.MSBuild.Task/build/ILRepack.Lib.MSBuild.Task.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>ILRepack.Lib.MSBuild.Task</id>
5-
<version>2.0.18.2</version>
5+
<version>2.0.18.3</version>
66
<title>ILRepack.Lib.MSBuild.Task</title>
77
<authors>RBSoft</authors>
88
<owners>rbsoft</owners>

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,14 @@ If you are using default targets file then you may notice that it clears Output
287287
<td>
288288
Additional debug information during merge that will be outputted to LogFile.
289289
</td>
290+
</tr>
291+
<tr>
292+
<td>
293+
NoRepackRes
294+
</td>
295+
<td>
296+
Does not add the embedded resource 'ILRepack.List' with all merged assembly names.
297+
</td>
290298
</tr>
291299
<tr>
292300
<td>

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version: 2.0.18.{build}
22
environment:
3-
my_version: 2.0.18.2
3+
my_version: 2.0.18.3
44
my_secret:
55
secure: 5qtuEW0UQ/IEO8DRi4/y3EgEBoJDM/HyYpPgzasIlm0=
66
skip_branch_with_pr: true

0 commit comments

Comments
 (0)