You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This script lists all DLL file name that are present inside a build directory, excluding the EAModelKit.dll file.
This feature should be use before releasing a new version of the MSI installer.
This script can be used like : bash MSIHelper.sh './EA-ModelKit/bin/Release/net481'
The AppComponents.wxs file have to be updated with the content of the output of the script (present in the app_components.xml). Do not update the first part of this file, that is related to the EAModelKit class registration.
'
if [ $# -eq 0 ]; then
echo "Usage: $0 <build_target_directory_path>"
exit 1
fi
build_target_path="$1"
output_file="app_components.xml"
if [ -e "$output_file" ]; then
rm "$output_file"
fi
for file_in_build_directory in "$build_target_path"/*; do
if [ -f "$file_in_build_directory" ] && [[ "$file_in_build_directory" == *.dll ]]; then