-
Bug
-
Resolution: Unresolved
-
P4
-
23
When trying to convert this command line
$$($1_MT) -nologo -manifest $$($1_MANIFEST) \
-identity:"$$($1_NAME).exe, version=$$($1_MANIFEST_VERSION)" \
-outputresource:$$@;#1
to use ExecuteWithLog, several errors occurred, that were related to the characters " (quote), , (comma) and # (hash).
We should make sure that these characters work, or that there is a viable alternative (like using $(COMMA)).
$$($1_MT) -nologo -manifest $$($1_MANIFEST) \
-identity:"$$($1_NAME).exe, version=$$($1_MANIFEST_VERSION)" \
-outputresource:$$@;#1
to use ExecuteWithLog, several errors occurred, that were related to the characters " (quote), , (comma) and # (hash).
We should make sure that these characters work, or that there is a viable alternative (like using $(COMMA)).