-
Notifications
You must be signed in to change notification settings - Fork 220
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
caebef5
commit 57a75d7
Showing
3 changed files
with
54 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> | ||
<metadata> | ||
<id>ILRepack</id> | ||
<version>2.0.19</version> | ||
<title>ILRepack - Open-source alternative to ILMerge</title> | ||
<authors>Francois Valdy</authors> | ||
<owners>Francois Valdy, Kirill Osenkov</owners> | ||
<language>en-US</language> | ||
<license type="expression">Apache-2.0</license> | ||
<projectUrl>https://github.com/gluck/il-repack</projectUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>ILRepack is meant at replacing ILMerge / Mono.Merge. | ||
The former being closed-source, impossible to customize, slow, resource consuming and many more. The later being deprecated, unsupported, and based on an old version of Mono.Cecil.</description> | ||
<summary>ILRepack is a utility that can be used to merge multiple .NET assemblies into a single assembly</summary> | ||
<tags>ILRepack ILMerge dotnet IL</tags> | ||
<copyright>Copyright Francois Valdy 2011-2015</copyright> | ||
</metadata> | ||
<files> | ||
<file src="ILRepack.props" target="build" /> | ||
<file src="ILRepack.exe" target="tools" /> | ||
</files> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Project> | ||
<PropertyGroup> | ||
<ILRepack>$(MSBuildThisFileDirectory)..\tools\ILRepack.exe</ILRepack> | ||
<ILRepack>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)..\tools\ILRepack.exe'))</ILRepack> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters