6-22-2017 (Thu): Regenerated RiverWare *.vcxproj files: (1) Gen pdb files (release), (2) Include ICU header path. Bug Number: n/a Release notes (y/n): no For Release Nums: 7.2 Regenerated RiverWare *.vcxproj files (ran qmake.pl, and qmake.exe in Remote) for the following two reasons: (1) Prevent unnecessary recompilations in Release build by forcing the generation of *.pdb files. This follows a "win-config.pl" reinstallation of C:\Riverware\tools\Qt-551 for the addition of the "-Zi" flag in this directive: "QMAKE_CFLAGS_RELEASE = -O2 -MD -Zi". SEE Bill's 6-15-2017 e-mail. (2) Inclusion of the ICU header file path, so that we can report the actual version of ICU with which RiverWare was built. See the following addition in Makefiles/riverwarebase.pro: C:/Riverware/tools/icu-57.1/include/unicode. ... Note, however, that this commit doesn't include that ICU version report change. After running Makefiles\qmake.pl (in a normal Windows shell), the following SED command was run in a GIT Command MINGW64 shell (with also modified application in the Remote directory): sed -i -b 's|C:/[Rr]iverware/staff/[A-Za-z0-9]*/[A-Za-z0-9]*/\([A-Za-z0-9]*\)|"../\1"|g' */*.vcxproj This is done because Qt 5.5.1's qmake.exe generates absolute paths into the local RiverWare build area. This 'sed' command converts those absolute paths to relative paths.