Unity3D-NSubstitute icon indicating copy to clipboard operation
Unity3D-NSubstitute copied to clipboard

Possibly merge the DLLs for less setup

Open FreezyExp opened this issue 4 years ago • 0 comments

Only referencing 'NSubstitute.dll' gives compile errors.

Using ilmerge https://github.com/dotnet/ILMerge the DLLs can be combined into one

which is usually bad practice as it leads to unnecessary bloat, but for editor only things like this who cares? 😏

run: ILMerge.exe /xmldocs /out:merged\NSubstitute.dll NSubstitute.dll Castle.Core.dll System.Threading.Tasks.Extensions.dll

Now only referencing 'NSubstitute.dll' is enough to make it work.

Thanks for sharing this repository with the world 😄

FreezyExp avatar Oct 20 '21 07:10 FreezyExp