init checkin (#6100)

This commit is contained in:
Clint Rutkas
2020-08-21 12:40:31 -07:00
committed by GitHub
parent 80f8c0399b
commit 83e8799610
23 changed files with 30 additions and 30 deletions

View File

@@ -17,9 +17,9 @@ namespace Microsoft.Plugin.Program.Programs
public string FamilyName { get; } = string.Empty;
public bool IsFramework { get; } = false;
public bool IsFramework { get; }
public bool IsDevelopmentMode { get; } = false;
public bool IsDevelopmentMode { get; }
public string InstalledLocation { get; } = string.Empty;

View File

@@ -128,7 +128,7 @@ namespace Microsoft.Plugin.Program.Programs
// Contains the arguments to the app
public string Arguments { get; set; } = string.Empty;
public bool HasArguments { get; set; } = false;
public bool HasArguments { get; set; }
// Retrieve the target path using Shell Link
public string RetrieveTargetPath(string path)

View File

@@ -46,7 +46,7 @@ namespace Microsoft.Plugin.Program.Programs
public bool Enabled { get; set; }
public bool HasArguments { get; set; } = false;
public bool HasArguments { get; set; }
public string Arguments { get; set; } = string.Empty;