Logic: VS Solution Parsing update
Updated vs solution parsing, fixed some issues. Also fixed some issues with corresponding unit tests.
This commit is contained in:
@@ -3428,14 +3428,14 @@
|
||||
"Name" = "8:Microsoft Visual Studio"
|
||||
"ProductName" = "8:Coati"
|
||||
"ProductCode" = "8:{2A3B2FF5-A114-4CAB-88FB-DE8942D5B8EB}"
|
||||
"PackageCode" = "8:{5D9BE539-F957-474F-BAA8-12F8EF1CC46A}"
|
||||
"PackageCode" = "8:{C87131CC-CFB6-458C-BDD9-281ECEC192EF}"
|
||||
"UpgradeCode" = "8:{CFF09D53-87AF-4241-960D-98C21ED9D358}"
|
||||
"AspNetVersion" = "8:4.0.30319.0"
|
||||
"RestartWWWService" = "11:FALSE"
|
||||
"RemovePreviousVersions" = "11:TRUE"
|
||||
"DetectNewerInstalledVersion" = "11:TRUE"
|
||||
"InstallAllUsers" = "11:FALSE"
|
||||
"ProductVersion" = "8:0.1"
|
||||
"ProductVersion" = "8:0.4"
|
||||
"Manufacturer" = "8:Coati Software"
|
||||
"ARPHELPTELEPHONE" = "8:"
|
||||
"ARPHELPLINK" = "8:www.coati.io/support"
|
||||
|
||||
+1
-1
@@ -42,7 +42,7 @@ namespace SetupCreateStartMenuShortcutLib
|
||||
}
|
||||
|
||||
IWshShortcut shortcut = (IWshShortcut)shell.CreateShortcut(shortcutAddress + _appShortcutName);
|
||||
shortcut.Description = "Fast source code reading and navigation";
|
||||
shortcut.Description = "Fast source code navigation and visualization";
|
||||
shortcut.TargetPath = app;
|
||||
shortcut.WorkingDirectory = appDirectory;
|
||||
shortcut.IconLocation = appDirectory + "data\\gui\\icon\\coati.ico";
|
||||
|
||||
@@ -35,7 +35,7 @@ namespace SetupRemoveCacheFiles
|
||||
{
|
||||
try
|
||||
{
|
||||
string appDataCoatiPath = Environment.GetEnvironmentVariable("APPDATA") + "\\..\\local\\Coati Software\\Coati\\";
|
||||
string appDataCoatiPath = Environment.GetEnvironmentVariable("APPDATA") + "\\..\\local\\Coati Software"; // \\Coati\\";
|
||||
|
||||
Directory.Delete(appDataCoatiPath, true);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user