Making .NET app finder for forgiving so it can use an app already installed in the simulator

This commit is contained in:
Dan Cuellar
2013-02-12 11:50:18 -08:00
parent c0b6f9e3a5
commit bed7f25ffc
@@ -69,7 +69,8 @@ namespace SimpleTest
string appPath = null;
foreach(string path in appFinder.StandardOutput.ReadToEnd().Split(new char[] {'\n','\r'}))
{
if (!path.Trim().EndsWith(".dSYM") && path.Contains("simulator"))
if (!path.Trim().EndsWith(".dSYM") && path.Contains("" +
"imulator"))
{
appPath = path.Trim();
break;