mirror of
https://github.com/git-for-windows/git.git
synced 2026-03-01 04:06:54 -06:00
vcxproj: avoid escaping double quotes in the defines
Visual Studio 2022 does not like that at all. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
This commit is contained in:
parent
956a0d4a1a
commit
4eb3bfcd49
@ -88,6 +88,7 @@ sub createProject {
|
||||
$defines =~ s/</</g;
|
||||
$defines =~ s/>/>/g;
|
||||
$defines =~ s/\'//g;
|
||||
$defines =~ s/\\"/"/g;
|
||||
|
||||
my $rcdefines = $defines;
|
||||
$rcdefines =~ s/(?<!\\)"/\\$&/g;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user