ILRepack.MSBuild.Task icon indicating copy to clipboard operation
ILRepack.MSBuild.Task copied to clipboard

MSBuild task for ILRepack which is an open-source alternative to ILMerge.

Results 12 ILRepack.MSBuild.Task issues
Sort by recently updated
recently updated
newest added

V2.0.13 Repro project available [here](https://github.com/LeximSoluciones/ILRepack.Issues) Steps to reproduce: - Clone the above repo - Open the "Step2.sln" solution in VS - Edit the `Using.ILRepack.V2` csproj and uncomment line 8 -...

Your commit tree is out of sync with nuget - can you please publish the latest version @peters ?

Version: 2.0.13 Error message: >ILRepack: Finished in 00:00:04.7660567 >Done building project "MyProject.csproj". >(PROJECT-PATH)\MyProject.csproj(39,9): error : ILRepack: The main assembly you specified does not exist: (PROJECT-PATH)\bin\Debug\MyProject.dll. >Done building project "MyProject.csproj" --...

I configured a client Blazor project with: ``` netstandard2.1 3.0 $(MSBuildThisFileDirectory)bin\$(Configuration)\$(TargetFramework) ``` The pack task runs without errors. However, when running the code in the browser I wet the following...

Hello, Could you please let me know if there is any support for setting the AssemblyVersion? Looking through the source code and documentation I wasn't able to find any indication...

Your dependencies to Microsoft.Build.* are bleeding into the $(OutputPath) of every project that holds a reference to ILRepack.MSBuild.Task. This pull request fixes that issue by moving said assemblies into the...

The KeyFile property is currently compile time enabled only for NETFULLFRAMEWORK. This change enables this property for all.

With this change, you can set the SearchDirectories property on the task.

Hello. I am using VS2017. With Verbose=false or without it I am getting a lot of build information lines like 'ILRepack: - Importing ...', ' ILRepack: - Fixing references for...

I have `ProjectA` that references sub-project `ProjectB`. When I "ILRepack" `ProjectA` it seems to include `ProjectB`: the packed `ProjectB.dll` is heavier than the unpacked (= not using ILRepack) `ProjectB.dll` ....