From 8227689e6aee9c65a1ff369482fc47b24e00b3f6 Mon Sep 17 00:00:00 2001 From: Bruce Date: Sat, 11 Apr 2026 14:25:37 +0800 Subject: [PATCH] Update configures. --- Launch/Launch.csproj | 4 ++-- Launch/Program.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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); } } }