Mr.PotatusVII
Mr.PotatusVII

Reputation: 48

Is there a way of runing sequentially a project in Visual Studio 2013?

Hi I want to execute a program I made in order to calculate the average result (not deterministic algorithm) and i need to run it A LOT of times. The program prints it's result in a different file everytime so it is not a problem. The problem is that i have to manually run the project thundreds of times, and i could automate it. I'm working ing windows, so i'd run a .bat file which executes the .exe generated into the debug folder, but when i execute that .exe, the program does not work properly, just does it when i push the "run" button. Is there a way of config the "run" button for use multiple times? Note that i need it won't be parallel but sequencially.

Upvotes: 0

Views: 50

Answers (1)

Git
Git

Reputation: 314

Why dont you build a release and trigger that? To my knowledge, there is no way to start a debug version outside of its debugger.

Upvotes: 1

Related Questions