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
if(RawTokens.Length==1&&RawTokens[0].StartsWith("@\""))//Response files are in 4.13 by default. Changing VCToolChain to not do this is probably better.
164
+
if(RawTokens.Length>=1&&RawTokens[0].StartsWith("@\""))//Response files are in 4.13 by default. Changing VCToolChain to not do this is probably better.
165
165
{
166
-
ResponseFilePath=RawTokens[0].Substring(2,RawTokens[0].Length-3);// bit of a bodge to get the @"response.txt" path...
166
+
stringresponseCommandline=RawTokens[0];
167
+
168
+
// If we had spaces inside the response file path, we need to reconstruct the path.
169
+
for(inti=1;i<RawTokens.Length;++i)
170
+
{
171
+
responseCommandline+=" "+RawTokens[i];
172
+
}
173
+
174
+
ResponseFilePath=responseCommandline.Substring(2,responseCommandline.Length-3);// bit of a bodge to get the @"response.txt" path...
0 commit comments