Why am I getting the following Build error?
C:\\WINDOWS\\Microsoft.NET\\Framework\\v3.5\\msbuild.exe C:\\Code\\EduBenesysNET\\EduBenesysNET\\EduBenesysNET.vbproj /t:pu
I was using single quotes around the password parameter when I got the error
/p:password='my secret' bad
/p:password='my secret'
and changed it to use double quotes to resolve the issue.
/p:password="my secret" good
/p:password="my secret"
Likely the same would apply to any parameter that needs quotes for values that contain a space.