VS doesn't behave correctly when the project properties command-line arguments includes an argument with the greater-than character (>). This behavior is particularly problematic when putting a password in as a command-line argument (a password may have a > character in it).1. Create a new Console App (VS 2012).2. Add the following lines to Main:Console.WriteLine(args[0]);Console.Read();3. On project properties (Debug tab), set the command-line arguments to: Pass>word4. Execute the application (Ctrl+F5). Note that it works (the output is "pass>word").5. Debug the application (F5). Note that it doesn’t work. Specificially, args[0] is "pass"; the output is redirected to "word".
Visual Studio/Team Foundation Server/.NET Framework Tooling Version
Steps to reproduce
Product Language
Operating System
Operating System Language
Actual results
Expected results
Please wait...