mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 19:26:39 +02:00
Program plugin fully on stylecop (#5964)
This commit is contained in:
@@ -27,14 +27,14 @@ namespace Microsoft.Plugin.Program.Programs
|
||||
{
|
||||
}
|
||||
|
||||
public PackageWrapper(string Name, string FullName, string FamilyName, bool IsFramework, bool IsDevelopmentMode, string InstalledLocation)
|
||||
public PackageWrapper(string name, string fullName, string familyName, bool isFramework, bool isDevelopmentMode, string installedLocation)
|
||||
{
|
||||
this.Name = Name;
|
||||
this.FullName = FullName;
|
||||
this.FamilyName = FamilyName;
|
||||
this.IsFramework = IsFramework;
|
||||
this.IsDevelopmentMode = IsDevelopmentMode;
|
||||
this.InstalledLocation = InstalledLocation;
|
||||
Name = name;
|
||||
FullName = fullName;
|
||||
FamilyName = familyName;
|
||||
IsFramework = isFramework;
|
||||
IsDevelopmentMode = isDevelopmentMode;
|
||||
InstalledLocation = installedLocation;
|
||||
}
|
||||
|
||||
public static PackageWrapper GetWrapperFromPackage(Package package)
|
||||
|
||||
Reference in New Issue
Block a user