Setting the command line arguments in Visual Studio Community 2013

Hi,
How can i set the command line "-VRPNConfigFile=“C:\Users…\Config\VRPNConfig.ini” when I use in visual studio Community 2013 “Debug/Start new instance”?

I dont know if there are differences with the community edition, but in the Standard edition you just right click on your project name under “Games” in the Solution Explorer and then go to the Debugging tab and add it to “Command Line Arguments”.
Be careful not to have multiple configurations selected because then you can quickly overwrite the original commandline parameters and you should just append to them.

To scan inside your code, you use something like

	if ( FParse::Value( FCommandLine::Get(), TEXT( "-VRPNConfigFile=" ), val ) ) {

		
	}

And be sure to not include spaces unless you have them on the command line as well because the parser does just a simple string compare and does not account for any whitespaces