preguntar acerca de processstartinfo

3
réponses

exécution programmatique de msbuild

j'essaie d'exécuter msbuild de façon programmée et je ne peux pas exécuter la commande suivante: string command = string.Format(@"C:WindowsMicrosoft.NETFrameworkv4.0.30319msbuild.exe ""{0}{1}.csproj""", _args.ProjectPath, _args.ProjectName); …
demandé sur 1970-01-01 00:33:31
17
réponses

ProcessStartInfo accroché à «WaitForExit»? Pourquoi?

j'ai le code suivant: info = new System.Diagnostics.ProcessStartInfo("TheProgram.exe", String.Join(" ", args)); info.CreateNoWindow = true; info.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden; info.RedirectStandardOutput = true; in …
demandé sur 1970-01-01 00:33:28