Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/peters/ILRepack.MSBuild.Task
MSBuild task for ILRepack which is an open-source alternative to ILMerge.
https://github.com/peters/ILRepack.MSBuild.Task
Last synced: 10 days ago
JSON representation
MSBuild task for ILRepack which is an open-source alternative to ILMerge.
- Host: GitHub
- URL: https://github.com/peters/ILRepack.MSBuild.Task
- Owner: peters
- License: other
- Archived: true
- Created: 2013-03-13T14:55:46.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2020-01-13T11:13:08.000Z (almost 5 years ago)
- Last Synced: 2024-07-04T11:10:03.280Z (4 months ago)
- Language: C#
- Size: 3.19 MB
- Stars: 83
- Watchers: 7
- Forks: 30
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
ILRepack.MSBuild.Task
=====================MSBuild task for [ILRepack](https://github.com/gluck/il-repack) which is an open-source alternative to ILMerge.
## Install via NuGet
`Install-Package ILRepack.MSBuild.Task`
## Supported frameworks
- `netcoreapp2.1`
- `netstandard2.0`
- `net46`
- `net45`
- `net40`NB! `OutputType` EXE on .NET Core assemblies is not supported.
## Build prerequisites
- Visual Studio 15.9
- .net core 2.2.101 sdk must be installed
- Checkout git submodules: `git submodule update --init --recursive`## Build on Windows
`build.cmd`
## Build on Unix
`build.sh`
### ILRepack a library with using an explicit list of input assemblies
```xml
netcoreapp2.2
$(MSBuildThisFileDirectory)bin\$(Configuration)\$(TargetFramework)
```
### ILRepack a library and all dependencies
```xml
netcoreapp2.2
$(MSBuildThisFileDirectory)bin\$(Configuration)\$(TargetFramework)
```
### ILRepack a executable and all dependencies
```xml
$(MSBuildThisFileDirectory)bin\$(Configuration)\$(TargetFramework)
```
License
=======
Checkout the [License](https://github.com/peters/ILRepack.MSBuild.Task/blob/master/LICENSE.md)