-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
029a544
commit 92a37fc
Showing
10 changed files
with
370 additions
and
187 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,5 @@ public enum PackageStatus | |
UpdateAvailable, | ||
Installing, | ||
Installed, | ||
NeedRestart | ||
} |
13 changes: 0 additions & 13 deletions
13
src/OneWare.PackageManager/Serializer/Installed/InstalledPackage.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
namespace OneWare.PackageManager.Serializer; | ||
|
||
public class InstalledPackage( | ||
string id, | ||
string type, | ||
string? category, | ||
string? description, | ||
string? license, | ||
string installedVersion) | ||
{ | ||
public string Id { get; } = id; | ||
|
||
public string Type { get; } = type; | ||
|
||
public string? Category { get; } = category; | ||
|
||
public string? Description { get; } = description; | ||
|
||
public string? License { get; } = license; | ||
|
||
public string InstalledVersion { get; } = installedVersion; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.