Closed fmerkel closed 5 years ago
@fmerkel thanks for your feedback. Man its been a while I don't stop by here. My delay is due to email notifications issues that I hope I fixed for good this time. My apologies.
Please take a look at the "Using Variables" section of the documentation: https://github.com/emerbrito/ILMerge-MSBuild-Task/wiki/Config-File
If you want your target folder to be "[project_folder]\bin\Debug\" you should be using "$(TargetDir)" instead, $(OutDir) as you may have noticed is not supported.
Closed due to inactivity. Please feel free to reopen it if the issue persists.
After setting "OutputFile" to
$(OutDir)FooBar.dll
and deleting the bin folder, the following error occurs:The workaround is to specify
$(ProjectDir)\\bin\\Debug\\FooBar.dll
instead.I also noticed another quirk where setting "OutputFile" to
$(OutDir)\\FooBar.dll
doesn't produce an error, but actually creates a folder called "$(OutDir)" in the project directory.