diff --git a/Launch/Launch.csproj b/Launch/Launch.csproj
index f46146d..d5af3e9 100644
--- a/Launch/Launch.csproj
+++ b/Launch/Launch.csproj
@@ -36,7 +36,7 @@
true
- bin\x86\Debug\
+ ..\Debug\
DEBUG;TRACE
full
x86
@@ -44,7 +44,7 @@
MinimumRecommendedRules.ruleset
- bin\x86\Release\
+ ..\Release\
TRACE
true
pdbonly
diff --git a/Launch/Program.cs b/Launch/Program.cs
index b81ecfa..6bf6665 100644
--- a/Launch/Program.cs
+++ b/Launch/Program.cs
@@ -62,7 +62,7 @@ namespace Launch
}
string appUserModelId = args [0];
string argumentLine = BuildCommandLine (args, 1);
- AppxPackage.PackageManager.ActiveApp (appUserModelId, string.IsNullOrEmpty (argumentLine) ? null : argumentLine);
+ AppxPackage.PackageManager.ActiveApp (appUserModelId, argumentLine);
}
}
}