diff --git a/AppInstallerReset.sln b/AppInstallerReset.sln index 20267ac..2a73065 100644 --- a/AppInstallerReset.sln +++ b/AppInstallerReset.sln @@ -251,10 +251,14 @@ Global {F0288B24-7B84-42A5-9A92-2E16A012E4DE}.Debug|ARM.Build.0 = Debug|Any CPU {F0288B24-7B84-42A5-9A92-2E16A012E4DE}.Debug|x86.ActiveCfg = Debug|x86 {F0288B24-7B84-42A5-9A92-2E16A012E4DE}.Debug|x86.Build.0 = Debug|x86 + {F0288B24-7B84-42A5-9A92-2E16A012E4DE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F0288B24-7B84-42A5-9A92-2E16A012E4DE}.Release|Any CPU.Build.0 = Release|Any CPU {F0288B24-7B84-42A5-9A92-2E16A012E4DE}.Release|ARM.ActiveCfg = Release|Any CPU {F0288B24-7B84-42A5-9A92-2E16A012E4DE}.Release|ARM.Build.0 = Release|Any CPU {F0288B24-7B84-42A5-9A92-2E16A012E4DE}.Release|x86.ActiveCfg = Release|x86 {F0288B24-7B84-42A5-9A92-2E16A012E4DE}.Release|x86.Build.0 = Release|x86 + {26B3C19D-6182-4DB5-8B69-EE098A0FD3BB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {26B3C19D-6182-4DB5-8B69-EE098A0FD3BB}.Debug|Any CPU.Build.0 = Debug|Any CPU {26B3C19D-6182-4DB5-8B69-EE098A0FD3BB}.Debug|ARM.ActiveCfg = Debug|Any CPU {26B3C19D-6182-4DB5-8B69-EE098A0FD3BB}.Debug|ARM.Build.0 = Debug|Any CPU {26B3C19D-6182-4DB5-8B69-EE098A0FD3BB}.Debug|x86.ActiveCfg = Debug|x86 diff --git a/Launch/Launch.csproj b/Launch/Launch.csproj index d050e20..d5af3e9 100644 --- a/Launch/Launch.csproj +++ b/Launch/Launch.csproj @@ -13,7 +13,7 @@ 512 - x86 + AnyCPU true full false @@ -36,21 +36,21 @@ true - bin\x86\Debug\ + ..\Debug\ DEBUG;TRACE full x86 - 7.3 prompt + MinimumRecommendedRules.ruleset - bin\x86\Release\ + ..\Release\ TRACE true pdbonly x86 - 7.3 prompt + MinimumRecommendedRules.ruleset 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); } } } diff --git a/pkgread/stringres.h b/pkgread/stringres.h index 42a6811..187aad0 100644 --- a/pkgread/stringres.h +++ b/pkgread/stringres.h @@ -269,7 +269,7 @@ std::string GetSuitableLanguageValue (const std::map if (map.empty ()) return ""; std::string ret = GetSuitableLanguageValue (map, pugi::as_utf8 (GetComputerLocaleCodeW ())); if (ret.empty ()) ret = GetSuitableLanguageValue (map, "en-US"); - if (ret.empty ()) ret = map.begin ()->second; + //if (ret.empty ()) ret = map.begin ()->second; return ret; } struct xmldoc @@ -323,7 +323,8 @@ std::wstring GetCapabilityDisplayName (const std::wstring &capname) { for (auto &it : g_nameToId) { - if (it.first == searchname) return GetRCStringSW (it.second); + if (it.first == searchname) + return GetRCStringSW (it.second); } } else return ret; diff --git a/shared/version b/shared/version index f11a6f0..bd2666a 100644 --- a/shared/version +++ b/shared/version @@ -1 +1 @@ -0.3.1.7 \ No newline at end of file +1.0.0.0 \ No newline at end of file