From 9f09bd089d77c45e7c8b723d9565310493adc04a Mon Sep 17 00:00:00 2001 From: Jan Paolo Go Date: Wed, 15 May 2019 20:43:16 -0500 Subject: [PATCH] add console app is not supported Need to indent the code for 3rd item to have VS code parse the markdown list properly. Also looks more that the code is meant for that item. --- docs/faq.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/docs/faq.md b/docs/faq.md index 3659b7714..bf16a824d 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -13,12 +13,15 @@ Frequently Asked Questions for Squirrel.Windows, organized by area below. You may want to look into the [ClickOnceToSquirrelMigrator](https://github.com/flagbug/ClickOnceToSquirrelMigrator) migration helper. 1. **How can I determine if my app is a Squirrel app? I provide a squirrel and non-squirrel install version and want to know which is running.** You can check for the `Update.exe` in the parent directory to determine if the app is using Squirrel ([see #574](https://github.com/Squirrel/Squirrel.Windows/issues/574#issuecomment-176043311)). - -``` -var assembly = Assembly.GetEntryAssembly(); -var updateDotExe = Path.Combine(Path.GetDirectoryName(assembly.Location), "..", "Update.exe"); -var isSquirrelInstall = File.Exists(updateDotExe); -``` + + ``` + var assembly = Assembly.GetEntryAssembly(); + var updateDotExe = Path.Combine(Path.GetDirectoryName(assembly.Location), "..", "Update.exe"); + var isSquirrelInstall = File.Exists(updateDotExe); + ``` + +1. **Why can't I integrate my console application to Squirrel.Windows** + Console application is currently not supported. Subscribe to [#1098](https://github.com/Squirrel/Squirrel.Windows/issues/1098) to keep track of this issue. ## Packaging