Something must be wrong with your Visual Studio if you do not see Command Line Arguments .

If you cannot fix your Visual Studio, it is possible to add the StartArguments element to your .csproj.user file:
<?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> <PublishUrlHistory /> <InstallUrlHistory /> <SupportUrlHistory /> <UpdateUrlHistory /> <BootstrapperUrlHistory /> <ErrorReportUrlHistory /> <FallbackCulture>en-US</FallbackCulture> <VerifyUploadedFiles>false</VerifyUploadedFiles> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'"> <StartArguments>Argument1 Argument2</StartArguments> <<== THIS LINE </PropertyGroup> </Project>
Alex Aza Jun 25 2018-11-11T00: 00Z
source share